Skip to content

Commit

Permalink
cleaned up some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Nov 5, 2024
1 parent 4f0002e commit 6aa65cc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
12 changes: 0 additions & 12 deletions src/org/rascalmpl/repl/TerminalProgressBarMonitor.java
Original file line number Diff line number Diff line change
Expand Up @@ -448,14 +448,6 @@ static String moveUp(int n) {
return "\u001B[" + n + "F";
}

static String overlined() {
return "\u001B[53m";
}

static String underlined() {
return "\u001B[4m";
}

public static String printCursorPosition() {
return "\u001B[6n";
}
Expand All @@ -468,10 +460,6 @@ public static String normal() {
return "\u001B[0m";
}

public static String lightBackground() {
return "\u001B[48;5;250m";
}

static String moveDown(int n) {
return "\u001B[" + n + "E";
}
Expand Down
1 change: 0 additions & 1 deletion test/org/rascalmpl/test/parser/StackNodeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import org.junit.Assert;
import org.junit.Test;
import org.rascalmpl.parser.gtd.stack.EpsilonStackNode;
import org.rascalmpl.parser.gtd.stack.LiteralStackNode;
import org.rascalmpl.parser.gtd.stack.filter.ICompletionFilter;
import org.rascalmpl.parser.gtd.stack.filter.IEnterFilter;
import org.rascalmpl.parser.gtd.stack.filter.follow.AtEndOfLineRequirement;
Expand Down

0 comments on commit 6aa65cc

Please sign in to comment.