summaryrefslogtreecommitdiffstats
path: root/vendor/futures-util/src/stream/stream/collect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/futures-util/src/stream/stream/collect.rs')
-rw-r--r--vendor/futures-util/src/stream/stream/collect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/futures-util/src/stream/stream/collect.rs b/vendor/futures-util/src/stream/stream/collect.rs
index b0e81b9ce..970ac26db 100644
--- a/vendor/futures-util/src/stream/stream/collect.rs
+++ b/vendor/futures-util/src/stream/stream/collect.rs
@@ -19,7 +19,7 @@ pin_project! {
impl<St: Stream, C: Default> Collect<St, C> {
fn finish(self: Pin<&mut Self>) -> C {
- mem::replace(self.project().collection, Default::default())
+ mem::take(self.project().collection)
}
pub(super) fn new(stream: St) -> Self {