mirror of
https://github.com/chatmail/core.git
synced 2026-05-22 16:26:31 +03:00
Fix one clippy::unneeded_unwrap warning
This commit is contained in:
@@ -100,8 +100,8 @@ impl Simplify {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if l_lastQuotedLine.is_some() {
|
if let Some(last_quoted_line) = l_lastQuotedLine {
|
||||||
l_last = l_lastQuotedLine.unwrap();
|
l_last = last_quoted_line;
|
||||||
is_cut_at_end = true;
|
is_cut_at_end = true;
|
||||||
if l_last > 1 {
|
if l_last > 1 {
|
||||||
if is_empty_line(lines[l_last - 1]) {
|
if is_empty_line(lines[l_last - 1]) {
|
||||||
|
|||||||
Reference in New Issue
Block a user