diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-03-15 20:49:41 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-03-15 21:57:22 +0100 |
commit | 62761a4e3a12e123d32c7d78a06f6565118d63b4 (patch) | |
tree | f7684602b22da9ffe461ec9ece9169098b258afe /core/isolate.rs | |
parent | bb642e8c7c9f8ab16540d2e3b1ef6a5543ded91e (diff) |
core: remove reset() from SharedQueue API
Diffstat (limited to 'core/isolate.rs')
-rw-r--r-- | core/isolate.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/isolate.rs b/core/isolate.rs index 33b52da75..ef2da2a68 100644 --- a/core/isolate.rs +++ b/core/isolate.rs @@ -375,7 +375,6 @@ impl<B: Behavior> Future for Isolate<B> { self.respond()?; // The other side should have shifted off all the messages. assert_eq!(self.shared.size(), 0); - self.shared.reset(); } } |