Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d4e415e8 authored by Jérôme David's avatar Jérôme David
Browse files

correction of a bug in JENAOntology (JENAEntityIt). Before JENAOntology...

correction of a bug in  JENAOntology (JENAEntityIt). Before JENAOntology returned only entities having their URI beginning with the Ontology URI. Now JENAOntology returns all entities having non null URI.
parent 70bf3de7
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ public class JENAEntityIt implements Iterator<OntResource> {
private void setNext() {
while (current==null) {
current = it.next();
if (current.getURI()==null || !current.getURI().startsWith(ontURI.toString())) {
if (current.getURI()==null) {// || !current.getURI().startsWith(ontURI.toString())) {
current=null;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment