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