1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

chore: remove unused class private properties (#24441)

Noticed that these private class properties are never used. Maybe a
leftover from an earlier implementation.
This commit is contained in:
Marvin Hagemeister 2024-07-05 16:27:06 +02:00 committed by GitHub
parent 233e5f6fea
commit 28d2ff7bdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;