From d72471ab5832bdd2d6e05cd96f2fd98d154d04f3 Mon Sep 17 00:00:00 2001 From: Rob Court Date: Sat, 31 Aug 2024 20:44:36 +0100 Subject: [PATCH] typo fix --- src/main/java/ebi/spot/neo4j2owl/exporter/N2OExportService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {