summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/http.ts
diff options
context:
space:
mode:
authorMarvin Hagemeister <marvin@deno.com>2024-07-05 16:27:06 +0200
committerGitHub <noreply@github.com>2024-07-05 16:27:06 +0200
commit28d2ff7bdc023a3b7aff47503aa03a8dd65fe87f (patch)
tree424a13c92afd01c350c62ab54db4a85ca5b20edf /ext/node/polyfills/http.ts
parent233e5f6feae62e2ddc4d4046479759bd0a09b3aa (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.ts3
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;