Skip to content

Commit a139a17

Browse files
committed
Clippy!
1 parent cb2fc6d commit a139a17

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler-core/src/manifest.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,7 @@ impl Resolved {
529529

530530
for new in &new.packages {
531531
match old.remove(&new.name) {
532-
Some(old_version) if old_version == &new.version => {
533-
continue;
534-
}
532+
Some(old_version) if old_version == &new.version => (),
535533
Some(old_version) => {
536534
changed.push((new.name.clone(), old_version.clone(), new.version.clone()));
537535
}

0 commit comments

Comments
 (0)