Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Jun 6, 2024
1 parent 072eff2 commit 5e2b4f4
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,7 @@ private List<AssignedJob> getInstancesOfBiggestParallelChildFragment(
return biggestParallelChildFragment;
}

private List<AssignedJob> buildInstances(
int instanceNum,
Function<Integer, Worker> workerSelector) {
private List<AssignedJob> buildInstances(int instanceNum, Function<Integer, Worker> workerSelector) {
ImmutableList.Builder<AssignedJob> instances = ImmutableList.builderWithExpectedSize(instanceNum);
for (int i = 0; i < instanceNum; i++) {
Worker selectedWorker = workerSelector.apply(i);
Expand Down

0 comments on commit 5e2b4f4

Please sign in to comment.