runedoku: (Package) private class/method
This commit is contained in:
@@ -57,7 +57,7 @@ public enum RunedokuPiece
|
||||
this.pieceForSudoku = pieceForSudoku;
|
||||
}
|
||||
|
||||
int getId()
|
||||
private int getId()
|
||||
{
|
||||
return pieceID;
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user