Privated methods that didn't have to be public

This commit is contained in:
2025-10-29 18:05:01 +01:00
parent d7e370536e
commit ea30e20585
3 changed files with 12 additions and 12 deletions

View File

@@ -322,7 +322,6 @@ public final class ReversiGame {
if (isLegalMove) {
moves = game.getFlipsForPotentialMove(
new Point(cellEntered%game.getColumnSize(),cellEntered/game.getRowSize()),
game.makeBoardAGrid(),
game.getCurrentPlayer());
}
canvas.drawHighlightDots(moves);