Remove needless imports (#159)

This commit is contained in:
Taiki Endo 2023-10-08 17:23:34 +09:00 committed by GitHub
parent a559165acd
commit 37a1d4ecd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

View File

@ -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;

View File

@ -2,7 +2,6 @@
use super::dur2timeout;
use std::convert::TryInto;
use std::fmt;
use std::io;
use std::marker::PhantomData;

View File

@ -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};