From 4b6ff90721b09ef2d07eb35c05ff6f7154543b50 Mon Sep 17 00:00:00 2001 From: Dorian HAMDANI Date: Mon, 31 Mar 2025 12:01:56 +0200 Subject: [PATCH] Remove unused imports --- src/GomokuCell.java | 4 ---- 1 file changed, 4 deletions(-) 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;