Task #124951 - added.err

back to task #124951
download
Error: CLIPPY_WARNING:
crates/goose-providers/src/json.rs:57:17: warning: this `if` can be collapsed into the outer `match`
#     |
#  57 | /                 if closers.last() == Some(&c) {
#  58 | |                     closers.pop();
#  59 | |                 }
#     | |_________________^
#     |
#     = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.96.0/index.html#collapsible_match
#     = note: `#[warn(clippy::collapsible_match)]` on by default
#  help: collapse nested if block
#     |
#  56 ~             '}' | ']'
#  57 ~                 if closers.last() == Some(&c) => {
#  58 |                     closers.pop();
#  59 ~                 }
#     |