This commit is contained in:
o0Ignition0o 2021-05-25 17:14:28 +02:00
parent cb78494b5c
commit 708f43bcf9
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@
//! group of actors through the dispatchers that holds information about
//! actors grouped together.
use crate::{
child::Child,
child_ref::ChildRef,
message::{Answer, Message},
prelude::SendError,
@ -92,7 +91,7 @@ impl Future for RoundRobinHandler {
let recipients = self.public_recipients();
if !recipients.is_empty() {
return Poll::Ready(recipients);
Poll::Ready(recipients)
} else {
Poll::Pending
}