clippy: Remove unnecessary use of return

This commit is contained in:
Ian Hobson
2023-05-12 16:52:06 +02:00
parent bbd84b7bbb
commit 9eb655cd27
2 changed files with 21 additions and 31 deletions

View File

@@ -269,7 +269,7 @@ impl<R: Read + Seek> WaveReader<R> {
/// Unwrap the inner reader.
pub fn into_inner(self) -> R {
return self.inner;
self.inner
}
///