Fix Clippy warning

This commit is contained in:
gwenn 2020-10-28 21:26:36 +01:00
parent b448d95510
commit d1ec46182f

View File

@ -861,7 +861,7 @@ impl<'conn> fallible_iterator::FallibleIterator for Batch<'conn, '_> {
}
return Ok(Some(next));
}
return Ok(None);
Ok(None)
}
}