diff options
-rw-r--r-- | ext/node/polyfills/http.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/node/polyfills/http.ts b/ext/node/polyfills/http.ts index dde7c4e41..534bad908 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<Deno.HttpConn> = new Set(); - #listener?: Deno.Listener; - #addr: Deno.NetAddr | null = null; #hasClosed = false; #server: Deno.HttpServer; |