diff options
Diffstat (limited to 'cli/cli_behavior.rs')
-rw-r--r-- | cli/cli_behavior.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/cli_behavior.rs b/cli/cli_behavior.rs index f1bd5a555..a297bdef9 100644 --- a/cli/cli_behavior.rs +++ b/cli/cli_behavior.rs @@ -52,6 +52,6 @@ impl Behavior for CliBehavior { control: &[u8], zero_copy: deno_buf, ) -> (bool, Box<Op>) { - ops::dispatch_all(Box::new(self), control, zero_copy, ops::op_selector_std) + ops::dispatch_all(self, control, zero_copy, ops::op_selector_std) } } |