remove deprecated code

This commit is contained in:
Nikolay Kim 2021-12-24 11:26:29 +06:00
parent cc55a4bbd3
commit b459a76df3
3 changed files with 2 additions and 9 deletions

View file

@ -344,13 +344,6 @@ impl<F: Filter> Io<F> {
panic!()
}
#[deprecated]
#[inline]
/// Convert current io stream into sealed version
pub fn into_boxed(self) -> crate::IoBoxed {
self.seal()
}
#[inline]
/// Convert current io stream into sealed version
pub fn seal(mut self) -> crate::IoBoxed {

View file

@ -16,7 +16,7 @@ pub fn seal<F, S, C>(
InitError = S::InitError,
>
where
F: Filter + 'static,
F: Filter,
S: ServiceFactory<IoBoxed, C>,
{
fn_factory_with_config(move |cfg: C| {