summaryrefslogtreecommitdiff
path: root/cli/cli.rs
diff options
context:
space:
mode:
authorandy finch <andyfinch7@gmail.com>2019-03-19 16:47:35 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-03-19 16:47:35 -0400
commit6131152a575f86c7510702091ba18f061628674f (patch)
tree3a885fc3a790a6ae3fca4962ce848ead28a4a174 /cli/cli.rs
parentfb2c0c29ec79434a2ca8354efe8b5e2de8a92558 (diff)
Remove old Buf definition in cli.rs (#1971)
Diffstat (limited to 'cli/cli.rs')
-rw-r--r--cli/cli.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/cli.rs b/cli/cli.rs
index 42b2b29f8..e5b39c558 100644
--- a/cli/cli.rs
+++ b/cli/cli.rs
@@ -14,11 +14,6 @@ use deno_core::StartupData;
use std::sync::atomic::Ordering;
use std::sync::Arc;
-// Buf represents a byte array returned from a "Op". The message might be empty
-// (which will be translated into a null object on the javascript side) or it is
-// a heap allocated opaque sequence of bytes. Usually a flatbuffer message.
-pub type Buf = Box<[u8]>;
-
/// Implements deno_core::Behavior for the main Deno command-line.
pub struct Cli {
startup_data: Option<StartupData>,