diff --git a/src/GomokuBoard.java b/src/GomokuBoard.java index ea07708..da7dce8 100644 --- a/src/GomokuBoard.java +++ b/src/GomokuBoard.java @@ -108,9 +108,7 @@ public class GomokuBoard{ public GomokuCell get(int x, int y){ int i = 0, j = 0; GomokuCell act = this.firstCell; - // System.out.println("x: "+x+" y: "+y); while (i != x || j != y){ - // System.out.println("i: "+i+" j: "+j); Cardinal c = Cardinal.SE; if (i < x) i++; else c = Cardinal.E;