From bedd3302f5b8b332d1016f4d5aafd80d2c7604f3 Mon Sep 17 00:00:00 2001 From: Sugui Date: Sat, 9 Dec 2023 10:25:27 +0100 Subject: [PATCH] Removed a lying comment --- src/main/java/sugui/util/Interval.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/java/sugui/util/Interval.java b/src/main/java/sugui/util/Interval.java index 7375a6e..ef3d32e 100644 --- a/src/main/java/sugui/util/Interval.java +++ b/src/main/java/sugui/util/Interval.java @@ -44,10 +44,6 @@ public class Interval implements Iterable { iterator.add(node); } - /** - * Adds the external interval to the current interval, modifying it. - * @param extInterval the inverval to add to the current interval - */ public Interval union(Interval extInterval) { Interval toret = new Interval(); for (Node node : interval) {