runedoku: Remove debugging

This commit is contained in:
sdburns1998
2019-07-07 18:30:11 +02:00
parent 9a1a783546
commit aa3fc15e70

View File

@@ -102,17 +102,6 @@ class Sudoku
return true;
}
public void display()
{
for (int i = 0; i < SIZE; i++)
{
for (int j = 0; j < SIZE; j++)
{
System.out.print(" " + board[i][j]);
}
}
}
int[][] getBoard()
{
return board;