Remove clear function: Code Duplication

This commit is contained in:
Unknown 2018-10-19 20:01:52 +02:00
parent 0da2d08b74
commit 37bff59f83
2 changed files with 1 additions and 5 deletions

View File

@ -39,6 +39,6 @@ class ControlsComponent {
}
void onClearClicked() {
sim.clear();
sim.reset();
}
}

View File

@ -24,10 +24,6 @@ class SimulationService {
_sim.addRandomPattern();
}
void clear() {
_sim.reset();
}
Point<int> get gridSize => _sim.gridSize;
void set gridSize(Point<int> size) {
_sim.gridSize = size;