More clear documentation
This commit is contained in:
parent
15d58e52a5
commit
2acf69d466
1 changed files with 5 additions and 1 deletions
|
@ -115,7 +115,11 @@ public class Solver implements SudokuSolver {
|
|||
}
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
* <p>
|
||||
* This is <b>not</b> checked for validity
|
||||
*/
|
||||
@Override
|
||||
public void set(int row, int col, int val) {
|
||||
if (row < 9 && col < 9) {
|
||||
|
|
Loading…
Reference in a new issue