Fix clippy lints

This commit is contained in:
Jack Grigg 2022-10-26 08:58:13 +00:00
parent 490fca7167
commit de96ae7153
5 changed files with 31 additions and 24 deletions

View file

@ -176,15 +176,13 @@ impl<R: Read, W: Write> Connection<R, W> {
fn grease_gun(&mut self) -> impl Iterator<Item = Stanza> {
// Add 5% grease
let mut rng = thread_rng();
(0..2)
.map(move |_| {
if rng.gen_range(0..100) < 5 {
Some(grease_the_joint())
} else {
None
}
})
.flatten()
(0..2).filter_map(move |_| {
if rng.gen_range(0..100) < 5 {
Some(grease_the_joint())
} else {
None
}
})
}
fn done(&mut self) -> io::Result<()> {
@ -484,7 +482,7 @@ mod tests {
.unwrap();
let stanza = plugin_conn
.unidir_receive::<_, (), (), _, _, _, _>(
("test", |s| Ok(s)),
("test", Ok),
("other", |_| Err(())),
(None, |_| Ok(())),
)