Skip to content

Commit

Permalink
spotless fix (#33797)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaofly committed Dec 10, 2024
1 parent cf7acbe commit 022e56e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ public final ASTNode visitGroupConcatFunction(final GroupConcatFunctionContext c
}
return result;
}

private <T extends ParseTree> Collection<T> getTargetRuleContextFromParseTree(final ParseTree parseTree, final Class<? extends T> clazz) {
Collection<T> result = new LinkedList<>();
for (int index = 0; index < parseTree.getChildCount(); index++) {
Expand All @@ -1065,7 +1065,7 @@ private <T extends ParseTree> Collection<T> getTargetRuleContextFromParseTree(fi
}
return result;
}

// DORIS ADDED BEGIN
@Override
public final ASTNode visitBitwiseFunction(final BitwiseFunctionContext ctx) {
Expand Down

0 comments on commit 022e56e

Please sign in to comment.