From b107883e09968b683e75000259294bcf34ba96f5 Mon Sep 17 00:00:00 2001 From: Sandor Van Wassenhove Date: Sat, 24 Oct 2015 11:47:51 -0700 Subject: [PATCH] Fix misaligned labels in HexGameState toString --- .../com/github/sandorw/mocabogaso/games/hex/HexGameState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) + " "); }