1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-22 12:05:06 +02:00

rename Apply service

This commit is contained in:
Nikolay Kim
2018-08-30 09:26:27 -07:00
parent e0513e4085
commit a928d82895
3 changed files with 24 additions and 35 deletions

View File

@@ -90,9 +90,7 @@ impl<T: HostAware> Connector<T> {
Error = ConnectorError,
InitError = E,
> + Clone {
move || -> FutureResult<Connector<T>, E> {
ok(Connector::new(cfg.clone(), opts))
}
move || -> FutureResult<Connector<T>, E> { ok(Connector::new(cfg.clone(), opts)) }
}
}