Fix clippy warning
This commit is contained in:
parent
a072b1f2f3
commit
394dfc07cc
@ -193,9 +193,11 @@ where
|
||||
break;
|
||||
}
|
||||
}
|
||||
if same_l && r.is_some() {
|
||||
last_r.push(r.unwrap());
|
||||
continue;
|
||||
if same_l {
|
||||
if let Some(r) = r {
|
||||
last_r.push(r);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
if r.is_some() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user