Skip to content

Commit

Permalink
Remove needless imports
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 8, 2023
1 parent a559165 commit 411fd49
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/epoll.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
//! Bindings to epoll (Linux, Android).
use std::convert::TryInto;
use std::io;
use std::os::unix::io::{AsFd, AsRawFd, BorrowedFd, RawFd};
use std::time::Duration;
Expand Down
1 change: 0 additions & 1 deletion src/iocp/port.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
use super::dur2timeout;

use std::convert::TryInto;
use std::fmt;
use std::io;
use std::marker::PhantomData;
Expand Down
1 change: 0 additions & 1 deletion src/poll.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Bindings to poll (VxWorks, Fuchsia, other Unix systems).
use std::collections::HashMap;
use std::convert::TryInto;
use std::io;
use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
use std::sync::{Condvar, Mutex};
Expand Down

0 comments on commit 411fd49

Please sign in to comment.