1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-27 17:52:56 +01:00

remove a box (#1814)

This commit is contained in:
fakeshadow 2020-12-06 19:42:15 +08:00 committed by GitHub
parent b75a9b7a20
commit ff79c33fd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,7 @@ impl Service for RouteService {
}
fn call(&mut self, req: ServiceRequest) -> Self::Future {
self.service.call(req).boxed_local()
self.service.call(req)
}
}