summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 6caeaa5dd..ca233d43c 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -364,13 +364,6 @@ fn get_suggestions_for_terminal_errors(e: &JsError) -> Vec<FixSuggestion> {
"Run again with `--unstable-cron` flag to enable this API.",
),
];
- } else if msg.contains("createHttpClient is not a function") {
- return vec![
- FixSuggestion::info("Deno.createHttpClient() is an unstable API."),
- FixSuggestion::hint(
- "Run again with `--unstable-http` flag to enable this API.",
- ),
- ];
} else if msg.contains("WebSocketStream is not defined") {
return vec![
FixSuggestion::info("new WebSocketStream() is an unstable API."),