Deprecated std::task::ready re-export (#451)

This commit is contained in:
Nikolay Kim 2024-11-02 18:12:21 +05:00 committed by GitHub
parent 8288fc0364
commit a30147120d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 11 deletions

View file

@ -102,10 +102,6 @@ impl CounterInner {
fn available(&self, cx: &mut task::Context<'_>) -> bool {
self.task.register(cx.waker());
if self.count.get() < self.capacity {
true
} else {
false
}
self.count.get() < self.capacity
}
}