Apply Checkstyle MethodParamPadCheck module
This commit also fixes its violations. Closes gh-34173
This commit is contained in:
committed by
Sébastien Deleuze
parent
0f38c28e91
commit
6d86b23fbe
@@ -98,7 +98,7 @@ public class CompositeMessageCondition implements MessageCondition<CompositeMess
|
||||
checkCompatible(other);
|
||||
List<MessageCondition<?>> otherConditions = other.getMessageConditions();
|
||||
for (int i = 0; i < this.messageConditions.size(); i++) {
|
||||
int result = compare (this.messageConditions.get(i), otherConditions.get(i), message);
|
||||
int result = compare(this.messageConditions.get(i), otherConditions.get(i), message);
|
||||
if (result != 0) {
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user