From: Hannu Niemistö Date: Wed, 24 May 2017 12:20:58 +0000 (+0300) Subject: Added null check to StreamingTransferableGraphImportProcess X-Git-Tag: v1.28.0~1 X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=commitdiff_plain;h=529dfdc68f934387c96b2c2825ffa747320538b5 Added null check to StreamingTransferableGraphImportProcess refs #7240 Change-Id: I5724ddfff4eae6c17dcd92eff71e25fb80bc8cf6 --- diff --git a/bundles/org.simantics.graph.db/src/org/simantics/graph/db/StreamingTransferableGraphImportProcess.java b/bundles/org.simantics.graph.db/src/org/simantics/graph/db/StreamingTransferableGraphImportProcess.java index 93131413f..886e47b12 100644 --- a/bundles/org.simantics.graph.db/src/org/simantics/graph/db/StreamingTransferableGraphImportProcess.java +++ b/bundles/org.simantics.graph.db/src/org/simantics/graph/db/StreamingTransferableGraphImportProcess.java @@ -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);