diff --git a/src/shadowbox/infrastructure/get_port.ts b/src/shadowbox/infrastructure/get_port.ts index cf39d840..a1f97642 100644 --- a/src/shadowbox/infrastructure/get_port.ts +++ b/src/shadowbox/infrastructure/get_port.ts @@ -20,8 +20,6 @@ const MIN_PORT = 1024; export class PortProvider { private reservedPorts = new Set(); - constructor() {} - addReservedPort(port: number) { if (this.reservedPorts.has(port)) { throw new Error(`Port ${port} is already reserved`);