Skip to content

Commit af814d4

Browse files
committed
Add missing type annotation
1 parent bbc9e5b commit af814d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/trino-main/src/main/java/io/trino/execution/StagesInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public List<StageInfo> getSubStagesDeep(StageId root, boolean includeRoot)
112112
return subStagesIds.build().stream().map(stagesById::get).collect(toImmutableList());
113113
}
114114

115-
private void collectSubStageIdsPreOrder(StageInfo stageInfo, ImmutableSet.Builder collector)
115+
private void collectSubStageIdsPreOrder(StageInfo stageInfo, ImmutableSet.Builder<StageId> collector)
116116
{
117117
stageInfo.getSubStages().stream().forEach(subStageId -> {
118118
collector.add(subStageId);

0 commit comments

Comments
 (0)