Skip to content

Commit

Permalink
WW-5340 Correct optimisation
Browse files Browse the repository at this point in the history
  • Loading branch information
kusalk committed Aug 31, 2023
1 parent 31cc8a1 commit 1401f1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected boolean recurseExcludedNodeType(Node node) {
return true;
} else {
for (int i = 0; i < node.jjtGetNumChildren(); i++) {
if (containsExcludedNodeType(node.jjtGetChild(i))) {
if (recurseExcludedNodeType(node.jjtGetChild(i))) {
return true;
}
}
Expand Down

0 comments on commit 1401f1e

Please sign in to comment.