diff options
author | Marvin Hagemeister <marvin@deno.com> | 2024-07-05 16:27:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 16:27:06 +0200 |
commit | 28d2ff7bdc023a3b7aff47503aa03a8dd65fe87f (patch) | |
tree | 424a13c92afd01c350c62ab54db4a85ca5b20edf /ext/node/polyfills/http.ts | |
parent | 233e5f6feae62e2ddc4d4046479759bd0a09b3aa (diff) |
chore: remove unused class private properties (#24441)
Noticed that these private class properties are never used. Maybe a
leftover from an earlier implementation.
Diffstat (limited to 'ext/node/polyfills/http.ts')
-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; |