fix: ensure worker node cannot be instantiaed without proper arguments
[poolifier.git] / src / pools / cluster / fixed.ts
index 9022c7025961e9fc206358a48843c9fc5070b0be..c7c95c4b3dad537b39dfd44d37481178035fcb4c 100644 (file)
@@ -116,16 +116,6 @@ export class FixedClusterPool<
     return WorkerTypes.cluster
   }
 
-  /** @inheritDoc */
-  protected get minSize (): number {
-    return this.numberOfWorkers
-  }
-
-  /** @inheritDoc */
-  protected get maxSize (): number {
-    return this.numberOfWorkers
-  }
-
   /** @inheritDoc */
   protected get busy (): boolean {
     return this.internalBusy()