fix build
All checks were successful
Linux arm64 / Build (push) Successful in 52s

This commit is contained in:
2025-01-21 19:28:53 +01:00
parent 4e33318ba0
commit 3a69139798
4 changed files with 14 additions and 12 deletions

View File

@@ -17,11 +17,6 @@ public class MutableCell extends Cell{
this.possibleSymbols = new ArrayList<>();
}
public MutableCell(MutableCell currentCell) {
super(currentCell);
this.possibleSymbols = currentCell.getPossibleSymbols();
}
public void setSymbolIndex(int symbolIndex) {
this.symbolIndex = symbolIndex;
}