You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2011/02/22 20:52:18 UTC

svn commit: r1073474 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java

Author: luc
Date: Tue Feb 22 19:52:17 2011
New Revision: 1073474

URL: http://svn.apache.org/viewvc?rev=1073474&view=rev
Log:
added missing @since tags
JIRA: MATH-533

Modified:
    commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java

Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java?rev=1073474&r1=1073473&r2=1073474&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java (original)
+++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java Tue Feb 22 19:52:17 2011
@@ -307,6 +307,7 @@ public class ResizableDoubleArray implem
      * Adds several element to the end of this expandable array.
      *
      * @param values to be added to end of array
+     * @since 2.2
      */
     public synchronized void addElements(double[] values) {
         final double[] tempArray = new double[numElements + values.length + 1];