Author: erans Date: Tue Nov 13 17:03:47 2012 New Revision: 1408833 URL: http://svn.apache.org/viewvc?rev=1408833&view=rev Log: MATH-894 Made the doc reflect the new behaviour of "clear()".
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java?rev=1408833&r1=1408832&r2=1408833&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java Tue Nov 13 17:03:47 2012 @@ -487,8 +487,7 @@ public class ResizableDoubleArray implem } /** - * Clear the array, reset the size to the initialCapacity and the number - * of elements to zero. + * Clear the array contents, resetting the number of elements to zero. */ public synchronized void clear() { numElements = 0;