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:
parent
233e5f6fea
commit
28d2ff7bdc
1 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue