Fixing javadoc, unused import
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@775411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e9b32bccfa
commit
bb7775388f
|
@ -85,7 +85,7 @@ public class MutableBoolean implements Mutable, Serializable, Comparable<Mutable
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return zero if this object represents the same boolean value as the argument; a positive value if this object
|
* @return zero if this object represents the same boolean value as the argument; a positive value if this object
|
||||||
* represents true and the argument represents false; and a negative value if this object represents false
|
* represents true and the argument represents false; and a negative value if this object represents false
|
||||||
|
|
|
@ -265,7 +265,7 @@ public class MutableByte extends Number implements Comparable<MutableByte>, Muta
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return negative if this is less, zero if equal, positive if greater
|
* @return negative if this is less, zero if equal, positive if greater
|
||||||
* @throws ClassCastException if the argument is not a MutableByte
|
* @throws ClassCastException if the argument is not a MutableByte
|
||||||
|
|
|
@ -295,7 +295,7 @@ public class MutableDouble extends Number implements Comparable<MutableDouble>,
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return negative if this is less, zero if equal, positive if greater
|
* @return negative if this is less, zero if equal, positive if greater
|
||||||
* @throws ClassCastException if the argument is not a MutableDouble
|
* @throws ClassCastException if the argument is not a MutableDouble
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.commons.lang.mutable;
|
package org.apache.commons.lang.mutable;
|
||||||
|
|
||||||
import org.apache.commons.lang.math.NumberUtils;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A mutable <code>float</code> wrapper.
|
* A mutable <code>float</code> wrapper.
|
||||||
*
|
*
|
||||||
|
@ -297,7 +295,7 @@ public class MutableFloat extends Number implements Comparable<MutableFloat>, Mu
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return negative if this is less, zero if equal, positive if greater
|
* @return negative if this is less, zero if equal, positive if greater
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -255,7 +255,7 @@ public class MutableInt extends Number implements Comparable<MutableInt>, Mutabl
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return negative if this is less, zero if equal, positive if greater
|
* @return negative if this is less, zero if equal, positive if greater
|
||||||
* @throws ClassCastException if the argument is not a MutableInt
|
* @throws ClassCastException if the argument is not a MutableInt
|
||||||
|
|
|
@ -265,7 +265,7 @@ public class MutableShort extends Number implements Comparable<MutableShort>, Mu
|
||||||
/**
|
/**
|
||||||
* Compares this mutable to another in ascending order.
|
* Compares this mutable to another in ascending order.
|
||||||
*
|
*
|
||||||
* @param obj
|
* @param other
|
||||||
* the mutable to compare to
|
* the mutable to compare to
|
||||||
* @return negative if this is less, zero if equal, positive if greater
|
* @return negative if this is less, zero if equal, positive if greater
|
||||||
* @throws ClassCastException if the argument is not a MutableShort
|
* @throws ClassCastException if the argument is not a MutableShort
|
||||||
|
|
Loading…
Reference in New Issue