Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sopel39 committed Aug 12, 2022
1 parent a4f7876 commit 17247b9
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ public FixedSourcePartitionedScheduler(

ArrayList<SourceScheduler> sourceSchedulers = new ArrayList<>();

boolean firstPlanNode = true;

partitionIdAllocator = new PartitionIdAllocator();
scheduledTasks = new HashMap<>();
for (PlanNodeId planNodeId : schedulingOrder) {
Expand All @@ -101,10 +99,6 @@ public FixedSourcePartitionedScheduler(
scheduledTasks);

sourceSchedulers.add(sourceScheduler);

if (firstPlanNode) {
firstPlanNode = false;
}
}
this.sourceSchedulers = new ArrayDeque<>(sourceSchedulers);
}
Expand Down

0 comments on commit 17247b9

Please sign in to comment.