X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.spreadsheet.ui%2Fsrc%2Forg%2Fsimantics%2Fspreadsheet%2Fui%2FSheetFactory.java;h=7edd2e81661c80c741f8162074b9f56ac572d890;hp=4669fdf4da1d4078372665d510a0f35effd354da;hb=0d9b90834ce56b292c00b1a39850ed842c3e4d42;hpb=e5db6157fd8722c946613d4e46d7aaf6bfa92609 diff --git a/bundles/org.simantics.spreadsheet.ui/src/org/simantics/spreadsheet/ui/SheetFactory.java b/bundles/org.simantics.spreadsheet.ui/src/org/simantics/spreadsheet/ui/SheetFactory.java index 4669fdf4d..7edd2e816 100644 --- a/bundles/org.simantics.spreadsheet.ui/src/org/simantics/spreadsheet/ui/SheetFactory.java +++ b/bundles/org.simantics.spreadsheet.ui/src/org/simantics/spreadsheet/ui/SheetFactory.java @@ -76,11 +76,11 @@ public class SheetFactory implements ElementFactory { } @Override - public void execute(AsyncReadGraph graph, final Resource sheet) { + public void execute(AsyncReadGraph g, final Resource sheet) { if (sheet != null) { - graph.asyncRequest(new ReadRequest() { + g.asyncRequest(new ReadRequest() { @Override public void run(ReadGraph graph) throws DatabaseException { @@ -138,7 +138,7 @@ public class SheetFactory implements ElementFactory { // This is called too early as backend.load is // definitely not complete at this time, but right now that is // acceptable from the implementation point-of-view. - procedure.execute(graph, element); + procedure.execute(g, element); }