Remove empty if

This commit is contained in:
Daniel Flanagan 2024-12-02 11:45:29 -06:00
parent be69ce7ad8
commit 6f6b8c1d62

View file

@ -55,7 +55,6 @@ impl Report {
fn is_safe_with_any_single_level_removed(&self) -> bool {
for i in 0..self.levels.len() {
if i > 0 {}
if self.is_safe(Some(i)) {
return true;
}