]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/VariableMapImpl.java
Work in progress
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / VariableMapImpl.java
index 5b6aa082001a4ae2be5f0547c3e983db9569c508..45675e6842ed63b138ba1c6b5c80abaf952389a4 100644 (file)
@@ -19,8 +19,9 @@ abstract public class VariableMapImpl implements VariableMap {
                
        Map<String,Variable> all = getVariables(graph, context, null);
        if(all.isEmpty()) return all;
-       
+    
        for(Map.Entry<String, Variable> entry : all.entrySet()) {
+       
                Set<String> classifications = entry.getValue().getClassifications(graph);
                if(classifications.contains(classification)) {
                        if(map == null) map = new HashMap<String,Variable>();