Author: bayard
Date: Mon Jul 26 06:43:31 2010
New Revision: 979179
URL: http://svn.apache.org/viewvc?rev=979179&view=rev
Log:
tabs to whitespace
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java?rev=979179&r1=979178&r2=979179&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/mutable/MutableObject.java
Mon Jul 26 06:43:31 2010
@@ -83,26 +83,26 @@ public class MutableObject<T> implements
* </p>
*
* @param obj the object to compare with, <code>null</code> returns
<code>false</code>
- * @return <code>true</code> if the objects are the same;
- * <code>true</code> if the objects have equivalent
<code>value</code> fields;
+ * @return <code>true</code> if the objects are the same;
+ * <code>true</code> if the objects have equivalent
<code>value</code> fields;
* <code>false</code> otherwise.
*/
@SuppressWarnings("unchecked")
@Override
- public boolean equals(Object obj) {
+ public boolean equals(Object obj) {
if (obj == null) {
- return false;
+ return false;
}
if (this == obj) {
- return true;
+ return true;
}
- if (this.getClass() == obj.getClass()) {
+ if (this.getClass() == obj.getClass()) {
MutableObject<T> that = (MutableObject<T>) obj;
return this.value.equals(that.value);
}
- else {
- return false;
- }
+ else {
+ return false;
+ }
}
/**