Remove unused imports
This commit is contained in:
@@ -1,9 +1,7 @@
|
|||||||
import java.util.EnumMap;
|
import java.util.EnumMap;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
/**
|
/**
|
||||||
* This class is cell of the board of the Gomoku game.
|
* 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.E, 0);
|
||||||
map.put(Cardinal.NE, 0);
|
map.put(Cardinal.NE, 0);
|
||||||
|
|
||||||
Color color = this.getState();
|
|
||||||
|
|
||||||
for (Map.Entry<Cardinal, Integer> entry : map.entrySet()) {
|
for (Map.Entry<Cardinal, Integer> entry : map.entrySet()) {
|
||||||
|
|
||||||
GomokuCell actualcell = this;
|
GomokuCell actualcell = this;
|
||||||
|
|||||||
Reference in New Issue
Block a user