X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bundles%2Forg.simantics.db.layer0%2Fsrc%2Forg%2Fsimantics%2Fdb%2Flayer0%2Frequest%2FOntologiesForModel.java;h=2394db7ed6f27a916c966f90d3c4f73d4d117698;hb=9f0fd59be54719b1fe9322d8fd37e4950857308c;hp=f1edc367ed7d217c5d2db004285f85e35a19702d;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/request/OntologiesForModel.java b/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/request/OntologiesForModel.java index f1edc367e..2394db7ed 100644 --- a/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/request/OntologiesForModel.java +++ b/bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/request/OntologiesForModel.java @@ -16,7 +16,7 @@ import org.simantics.db.Resource; import org.simantics.db.common.request.ResourceMultiRead; import org.simantics.db.exception.DatabaseException; import org.simantics.db.exception.ResourceNotFoundException; -import org.simantics.db.procedure.AsyncMultiProcedure; +import org.simantics.db.procedure.SyncMultiProcedure; import org.simantics.layer0.Layer0; import org.simantics.project.ontology.ProjectResource; @@ -29,7 +29,7 @@ public class OntologiesForModel extends ResourceMultiRead { super(model); } - public void check(ReadGraph graph, Resource resource, AsyncMultiProcedure callback) throws DatabaseException { + public void check(ReadGraph graph, Resource resource, SyncMultiProcedure callback) throws DatabaseException { Layer0 L0 = Layer0.getInstance(graph); ProjectResource PROJ = ProjectResource.getInstance(graph); @@ -51,7 +51,7 @@ public class OntologiesForModel extends ResourceMultiRead { } @Override - public void perform(ReadGraph graph, AsyncMultiProcedure callback) throws DatabaseException { + public void perform(ReadGraph graph, SyncMultiProcedure callback) throws DatabaseException { Layer0 L0 = Layer0.getInstance(graph);