Fixing format

Signed-off-by: Malte Tammena <malte.tammena@gmx.de>
This commit is contained in:
Malte Tammena 2017-10-15 12:52:53 +02:00
parent 770e78dc4a
commit d7074f2a18

View file

@ -327,8 +327,8 @@ public class Game {
* The Player that started the game gets 'X' the other one 'O'.
*/
private void logGame() {
for(int i=0;i<board[0].length;i++){
for(int j=0;j<board.length;j++){
for(int i = 0; i < board[0].length; i++){
for(int j = 0;j < board.length; j++){
if(board[j][i] == 0){
System.out.print("| ");
}