From 8476bbff9af28408bc6a9b0a7b2303cb3803422e Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 12 Sep 2024 10:46:48 +1000 Subject: feat: stabilize `Deno.createHttpClient()` (#25569) Closes #25518 --- ext/http/http_next.rs | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ext') diff --git a/ext/http/http_next.rs b/ext/http/http_next.rs index 9ff449a09..efe1b88c9 100644 --- a/ext/http/http_next.rs +++ b/ext/http/http_next.rs @@ -90,13 +90,6 @@ static USE_WRITEV: Lazy = Lazy::new(|| { false }); -// NOTE(bartlomieju): currently we don't have any unstable HTTP features, -// but let's keep this const here, because: -// a) we still need to support `--unstable-http` flag to not break user's CLI; -// b) we might add more unstable features in the future. -#[allow(dead_code)] -pub const UNSTABLE_FEATURE_NAME: &str = "http"; - /// All HTTP/2 connections start with this byte string. /// /// In HTTP/2, each endpoint is required to send a connection preface as a final confirmation -- cgit v1.2.3