Wire concept was changed to accommodate multiple inputs. Not all
[Mograsim.git] / era.mi / src / era / mi / logic / timeline / Timeline.java
index bdd5947..125b69c 100644 (file)
@@ -15,7 +15,6 @@ public class Timeline
        public Timeline(int initCapacity)
        {
                events = new PriorityQueue<InnerEvent>(initCapacity, (a, b) -> {
-                       //Is this really necessary? If only ints are allowed as relative timing, the difference should always be an int
                        long difference = a.getTiming() - b.getTiming();
                        if(difference == 0)
                                return 0;