Task #108427 - added.err
back to task #108427download
Error: CLIPPY_WARNING:
crates/blockdev/src/blockdev.rs:208:13: warning: this `if` statement can be collapsed
# |
# 208 | / if child.pttype.is_some() {
# 209 | | if let Some(esp) = child.find_partition_of_esp_optional()? {
# 210 | | return Ok(Some(esp));
# 211 | | }
# 212 | | }
# | |_____________^
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#collapsible_if
# help: collapse nested if block
# |
# 208 ~ if child.pttype.is_some()
# 209 ~ && let Some(esp) = child.find_partition_of_esp_optional()? {
# 210 | return Ok(Some(esp));
# 211 ~ }
# |