Skip to content

Commit

Permalink
chore: remove unused class private properties (denoland#24441)
Browse files Browse the repository at this point in the history
Noticed that these private class properties are never used. Maybe a
leftover from an earlier implementation.
  • Loading branch information
marvinhagemeister authored Jul 5, 2024
1 parent 233e5f6 commit 28d2ff7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ext/node/polyfills/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 28d2ff7

Please sign in to comment.