summaryrefslogtreecommitdiffstats
path: root/tokio/src/runtime/threadpool/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/runtime/threadpool/mod.rs')
-rw-r--r--tokio/src/runtime/threadpool/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/runtime/threadpool/mod.rs b/tokio/src/runtime/threadpool/mod.rs
index 2e6924ed..dad3437b 100644
--- a/tokio/src/runtime/threadpool/mod.rs
+++ b/tokio/src/runtime/threadpool/mod.rs
@@ -7,12 +7,12 @@ mod spawner;
pub use self::spawner::Spawner;
#[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411
-pub use tokio_executor::thread_pool::JoinHandle;
+pub use crate::executor::thread_pool::JoinHandle;
use crate::net::driver;
use crate::timer::timer;
-use tokio_executor::thread_pool::ThreadPool;
+use crate::executor::thread_pool::ThreadPool;
use std::future::Future;
use std::io;