Skip to content

Commit 4b3378b

Browse files
committed
Fix lint
1 parent 076ea1a commit 4b3378b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/year2019/day20.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ pub fn parse(input: &str) -> Maze {
119119

120120
if visited[next_index] != start {
121121
match tiles[next_index] {
122-
Tile::Wall => continue,
122+
Tile::Wall => (),
123123
Tile::Open => {
124124
todo.push_back((next_index, next_steps));
125125
}

0 commit comments

Comments
 (0)