Remove redundant lifetime

This commit is contained in:
Yuki Okushi 2019-11-15 00:11:46 +09:00
parent 2af0dfd7f8
commit 97fe358927
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ impl<T: AsyncRead + AsyncWrite + Unpin + 'static, P> Service for OpensslAcceptor
let acc = acc;
tokio_openssl::accept(&acc, io).await
}
.boxed_local::<'static>(),
.boxed_local(),
params: Some(params),
}
}