Skip to content

Commit ef84472

Browse files
committed
Update Board.java
1 parent 64d328f commit ef84472

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main/java/net/kite/internal/board/Board.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,14 @@ public final class Board {
208208
private final boolean[][] winCells = new boolean[WIDTH][HEIGHT];
209209

210210
public Board() {
211+
System.out.println("board");
211212
this.scoreCache = new BoardScoreCache();
213+
System.out.println("board2");
212214
this.importantScoreCache = new ImportantBoardScoreCache();
213215

214216
this.moves = new int[MOVES_LENGTH];
215217
this.moveScores = new int[MOVES_LENGTH];
218+
System.out.println("done");
216219
}
217220

218221
@SuppressWarnings("DataFlowIssue")

0 commit comments

Comments
 (0)