Statement unnecessarily nested within else clause.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1562971 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f67f7c27dc
commit
03c16e857d
|
@ -100,9 +100,8 @@ public class MutableObject<T> implements Mutable<T>, Serializable {
|
|||
if (this.getClass() == obj.getClass()) {
|
||||
final MutableObject<?> that = (MutableObject<?>) obj;
|
||||
return this.value.equals(that.value);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue