remove unecessary into_iter

This commit is contained in:
Bennet Bleßmann
2025-07-31 21:47:11 +02:00
committed by Bennet Bleßmann
parent 3365cffa96
commit e7600884fb
+1 -1
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`.