From 28d2ff7bdc023a3b7aff47503aa03a8dd65fe87f Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Fri, 5 Jul 2024 16:27:06 +0200 Subject: [PATCH] chore: remove unused class private properties (#24441) Noticed that these private class properties are never used. Maybe a leftover from an earlier implementation. --- ext/node/polyfills/http.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index dde7c4e41049f8..534bad90867cf4 100644 --- a/ext/node/polyfills/http.ts +++ b/ext/node/polyfills/http.ts @@ -1650,9 +1650,6 @@ export function Server(opts, requestListener?: ServerHandler): ServerImpl { } export class ServerImpl extends EventEmitter { - #httpConnections: Set = new Set(); - #listener?: Deno.Listener; - #addr: Deno.NetAddr | null = null; #hasClosed = false; #server: Deno.HttpServer;