Skip to content

Commit 99584cc

Browse files
authored
Use Iterator from the prelude (#673)
CI is [failing][failure] due to unused_imports because Iterator is already in the prelude. Removing it fixes things up. [failure]: https://github.com/tokio-rs/bytes/actions/runs/8034858583/job/21946873895
1 parent 4628927 commit 99584cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bytes_mut.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use core::iter::{FromIterator, Iterator};
1+
use core::iter::FromIterator;
22
use core::mem::{self, ManuallyDrop, MaybeUninit};
33
use core::ops::{Deref, DerefMut};
44
use core::ptr::{self, NonNull};

0 commit comments

Comments
 (0)