Skip to content

Commit

Permalink
Remove unnecessary parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
RaigorJiang committed Mar 11, 2024
1 parent 9690d60 commit 2d638dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ private void checkBeforeUpdate() {

@SuppressWarnings({"rawtypes", "unchecked"})
private boolean getRefreshStatus(final boolean currentRuleExists) {
return !(executor instanceof DatabaseRuleDropExecutor) || (currentRuleExists && ((DatabaseRuleDropExecutor) executor).hasAnyOneToBeDropped(sqlStatement));
return !(executor instanceof DatabaseRuleDropExecutor) || currentRuleExists && ((DatabaseRuleDropExecutor) executor).hasAnyOneToBeDropped(sqlStatement);
}
}

0 comments on commit 2d638dd

Please sign in to comment.