Skip to content

Commit 4accb31

Browse files
committed
style: fix a clippy error where an unnecessary continue was used in the jsonc parser in app.rs
1 parent b478a27 commit 4accb31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nixpacks/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ impl App {
217217
break;
218218
}
219219
None => break,
220-
_ => continue,
220+
_ => {}
221221
}
222222
}
223223
}

0 commit comments

Comments
 (0)