diff --git a/src/org/rascalmpl/interpreter/load/StandardLibraryContributor.java b/src/org/rascalmpl/interpreter/load/StandardLibraryContributor.java index 5169817b733..a312d533f55 100644 --- a/src/org/rascalmpl/interpreter/load/StandardLibraryContributor.java +++ b/src/org/rascalmpl/interpreter/load/StandardLibraryContributor.java @@ -64,10 +64,9 @@ public void contributePaths(List l) { } try { - l.add(vf.sourceLocation("cwd","","")); l.add(vf.sourceLocation("std","","")); l.add(vf.sourceLocation("testdata","","")); - l.add(vf.sourceLocation("test-modules","","")); + l.add(vf.sourceLocation("test-modules","","")); l.add(vf.sourceLocation("benchmarks","","")); } catch (URISyntaxException e) { @@ -77,11 +76,11 @@ public void contributePaths(List l) { @Override public String toString() { - return "[current wd and stdlib]"; + return "[std://, testdata://, test-modules://, benchmarks://]"; } @Override public boolean equals(Object obj) { return obj == this; } -} \ No newline at end of file +}