fix : création MultiDoku à résoudre avec cell imuable
All checks were successful
Linux arm64 / Build (push) Successful in 53s

This commit is contained in:
Melvyn
2025-01-29 11:26:36 +01:00
parent 5ad8fa30f4
commit a221233c06
2 changed files with 9 additions and 1 deletions

View File

@@ -198,5 +198,11 @@ public class MultiDoku {
}
return result;
}
public void setFilledCellsImmutable() {
for (Cell filledCell : getFilledCells()) {
filledCell.setImmutable();
}
}
}