Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix clippy::redundant_guards warning
``` warning: redundant guard --> src/io.rs:2701:28 | 2701 | Ok(buf) if buf.is_empty() => { | ^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards = note: `#[warn(clippy::redundant_guards)]` on by default help: try | 2701 - Ok(buf) if buf.is_empty() => { 2701 + Ok([]) => { | ```
- Loading branch information