fix: ensure worker node cannot be instantiaed without proper arguments
[poolifier.git] / src / pools / thread / fixed.ts
index 8dd4e7e33e422b4467a76931b201c45c0ad80712..32107e48635314e25269cc37e2c0ad7fdd3fcd75 100644 (file)
@@ -128,16 +128,6 @@ export class FixedThreadPool<
     return WorkerTypes.thread
   }
 
-  /** @inheritDoc */
-  protected get minSize (): number {
-    return this.numberOfWorkers
-  }
-
-  /** @inheritDoc */
-  protected get maxSize (): number {
-    return this.numberOfWorkers
-  }
-
   /** @inheritDoc */
   protected get busy (): boolean {
     return this.internalBusy()