mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -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 {
|
export class ServerImpl extends EventEmitter {
|
||||||
#httpConnections: Set<Deno.HttpConn> = new Set();
|
|
||||||
#listener?: Deno.Listener;
|
|
||||||
|
|
||||||
#addr: Deno.NetAddr | null = null;
|
#addr: Deno.NetAddr | null = null;
|
||||||
#hasClosed = false;
|
#hasClosed = false;
|
||||||
#server: Deno.HttpServer;
|
#server: Deno.HttpServer;
|
||||||
|
|
Loading…
Reference in a new issue