tower-util: remove dead code

This commit is contained in:
Sean McArthur 2019-12-11 12:27:09 -08:00
parent 1863304331
commit 2dc9a72bea
2 changed files with 0 additions and 5 deletions

View File

@ -16,7 +16,6 @@ mod either;
mod oneshot;
mod optional;
mod ready;
mod sealed;
mod service_fn;
pub use crate::{
@ -42,8 +41,6 @@ pub mod error {
pub mod future {
//! Future types
#[cfg(feature = "either")]
pub use crate::either::future as either;
pub use crate::optional::future as optional;
}

View File

@ -1,2 +0,0 @@
#[allow(unreachable_pub)]
pub trait Sealed<T> {}