Fixing format
Signed-off-by: Malte Tammena <malte.tammena@gmx.de>
This commit is contained in:
parent
770e78dc4a
commit
d7074f2a18
|
@ -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("| ");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue