diff --git a/src/main/java/ebi/spot/neo4j2owl/exporter/N2OExportService.java b/src/main/java/ebi/spot/neo4j2owl/exporter/N2OExportService.java index 71e65e6..e5febde 100644 --- a/src/main/java/ebi/spot/neo4j2owl/exporter/N2OExportService.java +++ b/src/main/java/ebi/spot/neo4j2owl/exporter/N2OExportService.java @@ -125,7 +125,7 @@ public N2OReturnValue owl2ExportEdges(Long skip, Long limit) { OWLOntologyManager man = OWLManager.createOWLOntologyManager(); OWLOntology o = man.createOntology(); - findEntities(o, skip, limit); + findEntities(skip, limit); addRelation(o, N2OStatic.RELTYPE_SUBCLASSOF); addRelation(o, N2OStatic.RELTYPE_INSTANCEOF); for (String rel_qsl : getRelations(OWLAnnotationProperty.class)) {