]> gerrit.simantics Code Review - simantics/platform.git/commitdiff
Added null check to StreamingTransferableGraphImportProcess 47/547/1
authorHannu Niemistö <hannu.niemisto@semantum.fi>
Wed, 24 May 2017 12:20:58 +0000 (15:20 +0300)
committerHannu Niemistö <hannu.niemisto@semantum.fi>
Wed, 24 May 2017 12:27:51 +0000 (15:27 +0300)
refs #7240
Change-Id: I5724ddfff4eae6c17dcd92eff71e25fb80bc8cf6

bundles/org.simantics.graph.db/src/org/simantics/graph/db/StreamingTransferableGraphImportProcess.java

index 93131413fddf25a4728918c92c09922b50ebf85b..886e47b12fa7e95a8e3ff89e7fab5f048df93d0c 100644 (file)
@@ -340,7 +340,7 @@ public class StreamingTransferableGraphImportProcess implements TransferableGrap
                ClusteringSupport support = graph.getService(ClusteringSupport.class);
                if(id == Extensions.ROOT_LIBRARY_CLUSTER_SET || id == Extensions.INDEX_ROOT_CLUSTER_SET) return;
                Resource indexRootClusterSetResource = rootLibrary;
-               if(support.isClusterSet(indexRoot)) {
+               if(indexRoot != null && support.isClusterSet(indexRoot)) {
                        indexRootClusterSetResource = indexRoot;
                } else {
                        graph.setClusterSet4NewResource(rootLibrary);