diff --git a/src/GomokuCell.java b/src/GomokuCell.java index d1aaf86..53d41c0 100644 --- a/src/GomokuCell.java +++ b/src/GomokuCell.java @@ -1,9 +1,7 @@ import java.util.EnumMap; import java.util.HashMap; import java.util.Map; -import java.util.concurrent.ExecutionException; import java.util.List; -import java.util.ArrayList; import java.util.Arrays; /** * This class is cell of the board of the Gomoku game. @@ -60,8 +58,6 @@ public class GomokuCell{ map.put(Cardinal.E, 0); map.put(Cardinal.NE, 0); - Color color = this.getState(); - for (Map.Entry entry : map.entrySet()) { GomokuCell actualcell = this;