mirror of
https://github.com/actix/actix-web.git
synced 2025-04-26 11:24:43 +00:00
remove a box (#1814)
This commit is contained in:
parent
b75a9b7a20
commit
ff79c33fd4
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ impl Service for RouteService {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn call(&mut self, req: ServiceRequest) -> Self::Future {
|
fn call(&mut self, req: ServiceRequest) -> Self::Future {
|
||||||
self.service.call(req).boxed_local()
|
self.service.call(req)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue