From a7660837c3541f6ee8feb22b71f8d2bf8904dcf0 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Tue, 13 Nov 2012 17:03:47 +0000 Subject: [PATCH] MATH-894 Made the doc reflect the new behaviour of "clear()". git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1408833 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math3/util/ResizableDoubleArray.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java b/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java index 0369d1326..1181f1008 100644 --- a/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java +++ b/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java @@ -487,8 +487,7 @@ public class ResizableDoubleArray implements DoubleArray, Serializable { } /** - * 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;