Skip to content

Commit

Permalink
remove redundant import of ConcurrentStream
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus-consoli committed Mar 21, 2024
1 parent bf9d34c commit f1a64d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/collections/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//!
//! [std::vec]: https://doc.rust-lang.org/stable/std/vec/use core::future::Ready;
use crate::concurrent_stream::{self, ConcurrentStream, FromStream};
use crate::concurrent_stream::{self, FromStream};
use crate::prelude::*;
use crate::utils::{from_iter, FromIter};
#[cfg(all(feature = "alloc", not(feature = "std")))]
Expand Down
2 changes: 1 addition & 1 deletion src/concurrent_stream/from_stream.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use super::{ConcurrentStream, Consumer};
use super::Consumer;
use crate::concurrent_stream::ConsumerState;
use crate::prelude::*;

Expand Down

0 comments on commit f1a64d1

Please sign in to comment.