Skip to content

Commit fa12159

Browse files
committed
Spotless
1 parent 94ac95d commit fa12159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php-checks/src/main/java/org/sonar/php/checks/CountInsteadOfEmptyCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private boolean isEmptyUsedInCondition(FunctionCallTree countCallTree, @Nullable
122122
do {
123123
currentCondition = currentCondition.getParent();
124124
} while (currentCondition != null &&
125-
(currentCondition.is(COMPARE_OPERATORS) || currentCondition.is(CONDITIONAL_KINDS) || currentCondition.is(CONDITION_STATEMENTS)));
125+
(currentCondition.is(COMPARE_OPERATORS) || currentCondition.is(CONDITIONAL_KINDS) || currentCondition.is(CONDITION_STATEMENTS)));
126126

127127
if (currentCondition == null) {
128128
return false;

0 commit comments

Comments
 (0)