Remove useless use prefix (#2106)

Signed-off-by: hi-rustin <[email protected]>
This commit is contained in:
二手掉包工程师
2023-07-19 09:34:29 +02:00
committed by GitHub
parent d42b5f70cc
commit 7093cee0ac
+1 -1
View File
@@ -112,7 +112,7 @@ where
//
// services like `Router` are always ready, so assume the service
// we're running here is also always ready...
match futures_util::future::poll_fn(|cx| service.poll_ready(cx)).now_or_never() {
match poll_fn(|cx| service.poll_ready(cx)).now_or_never() {
Some(Ok(())) => {}
Some(Err(err)) => match err {},
None => {