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