[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-09-24 21:36:10 +00:00
committed by GitHub
parent 9f5800c01e
commit 6f4d14f454

View File

@@ -459,11 +459,11 @@ impl Stream for StreamBuilder {
}
if this.sync_buf.is_empty() {
return Poll::Pending;
Poll::Pending
} else {
return Poll::Ready(Some(mem::take(
Poll::Ready(Some(mem::take(
&mut this.sync_buf,
)));
)))
}
}
}