Skip to content

Commit

Permalink
fixed nasty copy/paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Sep 20, 2021
1 parent a17a950 commit 4f9826d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/org/rascalmpl/ideservices/BasicIDEServices.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import java.awt.Desktop;
import java.io.File;
import java.io.IOException;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.net.URI;
import java.nio.file.Path;
Expand Down
2 changes: 1 addition & 1 deletion src/org/rascalmpl/interpreter/Evaluator.java
Original file line number Diff line number Diff line change
Expand Up @@ -1889,7 +1889,7 @@ public void registerDiagnostics(IList messages) {
@Override
public void unregisterDiagnostics(IList resources) {
if (monitor instanceof IDEServices) {
((IDEServices) monitor).registerDiagnostics(resources);
((IDEServices) monitor).unregisterDiagnostics(resources);
}
else {
return;
Expand Down

0 comments on commit 4f9826d

Please sign in to comment.