Remove redundant return

This commit is contained in:
Rua 2022-10-30 08:10:32 +01:00 committed by GitHub
parent bb495cceb1
commit bb971bc5c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1074,7 +1074,7 @@ impl Fence {
// Otherwise spin
cx.waker().wake_by_ref();
return Poll::Pending;
Poll::Pending
}
}