Task #105038 - added.err
back to task #105038download
Error: CLIPPY_WARNING:
crates/tmpfiles/src/lib.rs:477:9: warning: this `if` statement can be collapsed
# |
# 477 | / if let Ok(s) = stem.as_str() {
# 478 | | if s.starts_with(BOOTC_GENERATED_PREFIX) {
# 479 | | generation.increment();
# 480 | | }
# 481 | | }
# | |_________^
# |
# = 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
# |
# 477 ~ if let Ok(s) = stem.as_str()
# 478 ~ && s.starts_with(BOOTC_GENERATED_PREFIX) {
# 479 | generation.increment();
# 480 ~ }
# |