fix: fix fair share algorithm implementation
[poolifier.git] / src / pools / selection-strategies / less-used-worker-choice-strategy.ts
index 078dd8fd8149747ef121205145ee707c42204e36..295493a494f842da32645f563469e5ba272eea3d 100644 (file)
@@ -62,7 +62,7 @@ export class LessUsedWorkerChoiceStrategy<
   }
 
   /** @inheritDoc */
-  public remove (workerNodeKey: number): boolean {
+  public remove (): boolean {
     return true
   }
 }