mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-07 00:00:13 +02:00
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
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
use core::iter::{FromIterator, Iterator};
|
||||
use core::iter::FromIterator;
|
||||
use core::mem::{self, ManuallyDrop, MaybeUninit};
|
||||
use core::ops::{Deref, DerefMut};
|
||||
use core::ptr::{self, NonNull};
|
||||
|
||||
Reference in New Issue
Block a user