summaryrefslogtreecommitdiffstats
path: root/tokio/src/executor/thread_pool/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/executor/thread_pool/mod.rs')
-rw-r--r--tokio/src/executor/thread_pool/mod.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tokio/src/executor/thread_pool/mod.rs b/tokio/src/executor/thread_pool/mod.rs
index 09179245..76dc78e2 100644
--- a/tokio/src/executor/thread_pool/mod.rs
+++ b/tokio/src/executor/thread_pool/mod.rs
@@ -8,9 +8,6 @@ mod current;
mod idle;
use self::idle::Idle;
-mod join;
-pub use self::join::JoinHandle;
-
mod owned;
use self::owned::Owned;
@@ -40,9 +37,6 @@ mod tests;
#[cfg(feature = "blocking")]
pub use worker::blocking;
-// Re-export `task::Error`
-pub use crate::executor::task::Error;
-
// These exports are used in tests
#[cfg(test)]
#[allow(warnings)]