diff options
author | nea <romangraef@gmail.com> | 2022-07-05 12:24:19 +0200 |
---|---|---|
committer | nea <romangraef@gmail.com> | 2022-07-05 12:24:19 +0200 |
commit | 5c2f9513f056f9074966f181683ef6b2c6e10791 (patch) | |
tree | 82ea94a76ece3f9cdbd5595dd067f9571ea1d3a7 /src/main | |
parent | 744bdab73327d0c33387e8b7545e47d88894fac8 (diff) | |
download | NotEnoughUpdates-5c2f9513f056f9074966f181683ef6b2c6e10791.tar.gz NotEnoughUpdates-5c2f9513f056f9074966f181683ef6b2c6e10791.tar.bz2 NotEnoughUpdates-5c2f9513f056f9074966f181683ef6b2c6e10791.zip |
Remove stuff
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java | 1 |
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<>(); |