Skip to content

Commit 43f5f2a

Browse files
committed
remove _deselect and _denotify for more pretty
1 parent db9a825 commit 43f5f2a

File tree

1 file changed

+0
-3
lines changed
  • algorithm/etc/flood_fill/flood_fill

1 file changed

+0
-3
lines changed

algorithm/etc/flood_fill/flood_fill/code.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ function FloodFill(i, j, oldColor, newColor) {
1414
FloodFill(i - 1, j, oldColor, newColor);
1515
FloodFill(i, j + 1, oldColor, newColor);
1616
FloodFill(i, j - 1, oldColor, newColor);
17-
18-
tracer._denotify(i, j);
19-
tracer._deselect(i, j)._wait();
2017
}
2118

2219
FloodFill(4, 4, '-', 'a');

0 commit comments

Comments
 (0)