runedoku: (Package) private class/method

This commit is contained in:
sdburns1998
2019-07-07 18:28:45 +02:00
parent d5241f93e1
commit ae7e7261bf
2 changed files with 3 additions and 3 deletions

View File

@@ -57,7 +57,7 @@ public enum RunedokuPiece
this.pieceForSudoku = pieceForSudoku;
}
int getId()
private int getId()
{
return pieceID;
}

View File

@@ -5,11 +5,11 @@ package net.runelite.client.plugins.runedoku;
*
* @author ?
*/
public class Sudoku
class Sudoku
{
private int[][] board;
public static final int EMPTY = 0;
private static final int EMPTY = 0;
private static final int SIZE = 9;
Sudoku(final int[][] board)