Skip to content

Commit

Permalink
removed cwd from the standard library contributor; fixes #1859
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Sep 12, 2023
1 parent 40719bd commit d55cb74
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ public void contributePaths(List<ISourceLocation> 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) {
Expand All @@ -77,11 +76,11 @@ public void contributePaths(List<ISourceLocation> 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;
}
}
}

0 comments on commit d55cb74

Please sign in to comment.