Chore: Clippy fixes to match new MSRV.
This commit is contained in:
@@ -156,9 +156,7 @@ impl Compressed {
|
||||
.await??;
|
||||
|
||||
// If success, guaranteed to be Parsed
|
||||
let mut parsed = if let LiveInput::Parsed(parsed) = promoted {
|
||||
parsed
|
||||
} else {
|
||||
let LiveInput::Parsed(mut parsed) = promoted else {
|
||||
unreachable!()
|
||||
};
|
||||
|
||||
|
||||
@@ -74,9 +74,7 @@ impl Decompressed {
|
||||
.await??;
|
||||
|
||||
// If success, guaranteed to be Parsed
|
||||
let parsed = if let LiveInput::Parsed(parsed) = promoted {
|
||||
parsed
|
||||
} else {
|
||||
let LiveInput::Parsed(parsed) = promoted else {
|
||||
unreachable!()
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user