Remove redundant syntax
This commit is contained in:
parent
2f8cc86f3a
commit
4654e093bf
|
@ -412,11 +412,11 @@ public class EqualsBuilder implements Builder<Boolean> {
|
|||
return this;
|
||||
}
|
||||
if (lhs == null || rhs == null) {
|
||||
this.setEquals(false);
|
||||
setEquals(false);
|
||||
return this;
|
||||
}
|
||||
if (lhs.length != rhs.length) {
|
||||
this.setEquals(false);
|
||||
setEquals(false);
|
||||
return this;
|
||||
}
|
||||
for (int i = 0; i < lhs.length && isEquals; ++i) {
|
||||
|
|
Loading…
Reference in New Issue