Skip to content

Commit

Permalink
Fix misaligned labels in HexGameState toString
Browse files Browse the repository at this point in the history
  • Loading branch information
sandorw committed Oct 24, 2015
1 parent 7449709 commit b107883
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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) + " ");
}
Expand Down

0 comments on commit b107883

Please sign in to comment.