]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/BlockingAsyncMultiProcedure.java
Attempt to fix regressions in new code base
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / BlockingAsyncMultiProcedure.java
index cc50ea9b8fcc4447f209f55fd370c4b477380a89..45facb864efe25b4d3e07cbab237841e8df341e6 100644 (file)
@@ -31,7 +31,7 @@ public class BlockingAsyncMultiProcedure<Result> implements AsyncMultiProcedure<
     public BlockingAsyncMultiProcedure(ReadGraphImpl graph, AsyncMultiProcedure<Result> procedure, Object key) {
         this.procedure = procedure;
         this.key = key;
-        this.graph = ReadGraphImpl.newAsync(graph);
+        this.graph = graph;
         this.graph.asyncBarrier.inc();
     }