Fix build after I/O many completions removal

This commit is contained in:
Pekka Enberg
2025-10-16 17:19:16 +03:00
parent 44fa0a4f6e
commit 6e34c505e1

View File

@@ -2383,9 +2383,6 @@ impl IOCompletions {
if let Some(waker) = waker {
match self {
IOCompletions::Single(c) => c.set_waker(waker),
IOCompletions::Many(completions) => {
completions.iter().for_each(|c| c.set_waker(waker))
}
}
}
}