small change to tuple

This commit is contained in:
2018-03-11 21:02:06 +01:00
parent e19a379ab6
commit fe410b0643

View File

@@ -3,7 +3,6 @@ package worms.util;
import be.kuleuven.cs.som.annotate.Immutable; import be.kuleuven.cs.som.annotate.Immutable;
import be.kuleuven.cs.som.annotate.Value; import be.kuleuven.cs.som.annotate.Value;
import java.lang.reflect.Array;
import java.util.Objects; import java.util.Objects;
@@ -111,4 +110,3 @@ public class Tuple<T1, T2> {
return Objects.hash(item1, item2); return Objects.hash(item1, item2);
} }
} }
/