From 5c2f9513f056f9074966f181683ef6b2c6e10791 Mon Sep 17 00:00:00 2001 From: nea Date: Tue, 5 Jul 2022 12:24:19 +0200 Subject: Remove stuff --- src/main/java/io/github/moulberry/notenoughupdates/util/Calculator.java | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main') 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 shuntingYard(List 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 op = new ArrayDeque<>(); List out = new ArrayList<>(); -- cgit