Skip to content

Commit 4cb2fba

Browse files
committed
fix: use break instead of continue
1 parent 9ee4881 commit 4cb2fba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/src/tap/checks/value_check.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl MinimumValue {
6060
}
6161
}
6262
}
63-
None => continue,
63+
None => break,
6464
}
6565
}
6666
});
@@ -75,7 +75,7 @@ impl MinimumValue {
7575
.unwrap()
7676
.insert(query.signature, query);
7777
}
78-
None => continue,
78+
None => break,
7979
}
8080
}
8181
});

0 commit comments

Comments
 (0)