Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: length comparison to zero --> src/cmd/sqlp.rs:505:25 | 505 | .filter(|s| s.trim().len() > 0) | ^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!s.trim().is_empty()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_zero = note: `#[warn(clippy::len_zero)]` on by default
- Loading branch information