Skip to content

Commit

Permalink
LPD-44271 Skip instanceof
Browse files Browse the repository at this point in the history
  • Loading branch information
ling-alan-huang committed Dec 18, 2024
1 parent 85b06a0 commit aad972c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ protected String doProcess(

String clause = ifStatement1.getClause();

if (clause.contains("instanceof")) {
continue;
}

int x = StringUtil.indexOfAny(
clause, new String[] {"&", "<", "=", ">", "|", "^"});

Expand Down

0 comments on commit aad972c

Please sign in to comment.