]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/variable/VariableRepository.java
Merge "Fixed ProfileObserver.update race with multiple query threads"
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / variable / VariableRepository.java
index 48062205cad175b35a806d0632d9f5fb46451513..bcb207e9e820727fa4b8368b1fe5ccae9ed877e9 100644 (file)
@@ -36,12 +36,11 @@ final public class VariableRepository {
                                return e.getValue().browse(graph, uri.substring(e.getKey().length()));
                        }
                }
-               throw new MissingVariableException(uri);
+               throw new MissingVariableException(uri, null);
        }
-       
+
        public static void clear() {
            repository.clear();
        }
     
 }
-