merge
Some checks failed
Linux arm64 / Build (push) Failing after 20s

This commit is contained in:
Janet-Doe
2025-01-21 19:10:06 +01:00
parent 963cea897c
commit 4bd55d4ce4
9 changed files with 151 additions and 37 deletions

View File

@@ -2,8 +2,8 @@ package sudoku;
public class ImmutableCell extends Cell {
public ImmutableCell(int symboleIndex) {
super(symboleIndex);
public ImmutableCell(int symbolIndex) {
super(symbolIndex);
}
}