diff --git a/tokio/src/runtime/park.rs b/tokio/src/runtime/park.rs index 98a8fe5a31d..2fa0f501c6d 100644 --- a/tokio/src/runtime/park.rs +++ b/tokio/src/runtime/park.rs @@ -272,7 +272,6 @@ impl CachedParkThread { use std::task::Context; use std::task::Poll::Ready; - // `get_unpark()` should not return a Result let waker = self.waker()?; let mut cx = Context::from_waker(&waker);