Skip to content

Commit

Permalink
Fix new checkstyle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
XiongKezhi committed Feb 23, 2021
1 parent 58c8f2b commit b20c9f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private static List<FlowNode> getEnclosingStagesAndParallels(final FlowNode node
for (FlowNode enclosing : node.getEnclosingBlocks()) {
if (enclosing != null && enclosing.getAction(LabelAction.class) != null
&& (isStageNode(enclosing) || enclosing.getAction(ThreadNameAction.class) != null)) {
enclosingBlocks.add(enclosing);
enclosingBlocks.add(enclosing);
}
}

Expand Down

0 comments on commit b20c9f5

Please sign in to comment.