diff --git a/src/main/java/com/github/sandorw/mocabogaso/games/hex/HexGameState.java b/src/main/java/com/github/sandorw/mocabogaso/games/hex/HexGameState.java index ed7267c..dbf57a6 100644 --- a/src/main/java/com/github/sandorw/mocabogaso/games/hex/HexGameState.java +++ b/src/main/java/com/github/sandorw/mocabogaso/games/hex/HexGameState.java @@ -219,7 +219,7 @@ public long getZobristHash() { public String toString() { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("HexGameState, board size=" + boardSize + "\n"); - stringBuilder.append(" "); + stringBuilder.append(" "); for (int i=0; i < boardSize; ++i) { stringBuilder.append((char)(i+65) + " "); }