reglage erreur

This commit is contained in:
2024-05-05 00:43:48 +02:00
parent 508b423def
commit 8308a99068
15 changed files with 0 additions and 1 deletions

View File

@@ -92,7 +92,6 @@ public class SudokuCreator extends SudokuUI {
Grid grid = sudoku.getGrid();
for (int row = 0; row < 9; row++) {
for (int col = 0; col < 9; col++) {
if()
int value = grid.getCell(row, col).getValue();
buttons[row][col].setText(value == 0 ? "" : String.valueOf(value));
}