diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index dde7c4e410..534bad9086 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;