aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java b/src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java
index eb1ba425..89befec7 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java
@@ -154,7 +154,6 @@ public class Calculator {
public static List<Token> shuntingYard(List<Token> toShunt) throws CalculatorException {
// IT'S SHUNTING TIME
// This is an implementation of the shunting yard algorithm
- // Dear god, just thinking about dijkstra makes me wet and hard, such a fucking good mathematician
Deque<Token> op = new ArrayDeque<>();
List<Token> out = new ArrayList<>();