summaryrefslogtreecommitdiff
path: root/cli/program_state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/program_state.rs')
-rw-r--r--cli/program_state.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/program_state.rs b/cli/program_state.rs
index 056928e7b..c52f4efef 100644
--- a/cli/program_state.rs
+++ b/cli/program_state.rs
@@ -34,14 +34,6 @@ use std::fs::read;
use std::sync::Arc;
use std::sync::Mutex;
-pub fn exit_unstable(api_name: &str) {
- eprintln!(
- "Unstable API '{}'. The --unstable flag must be provided.",
- api_name
- );
- std::process::exit(70);
-}
-
/// This structure represents state of single "deno" program.
///
/// It is shared by all created workers (thus V8 isolates).