remove unecessary into_iter

This commit is contained in:
Bennet Bleßmann
2025-07-31 21:45:44 +02:00
committed by Bennet Bleßmann
parent 3365cffa96
commit e7600884fb

View File

@@ -526,7 +526,7 @@ impl IndexStore {
&'a self, &'a self,
range: R, range: R,
) -> impl Iterator<Item = Stream> + 'a { ) -> impl Iterator<Item = Stream> + 'a {
self.streams.range(range).into_iter().copied() self.streams.range(range).copied()
} }
/// Forcibly sets `alias` to `stream`. /// Forcibly sets `alias` to `stream`.