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:
Gary D. Gregory 2014-01-30 21:23:18 +00:00
parent f67f7c27dc
commit 03c16e857d
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}
/**