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:48 UTC

svn commit: r1073475 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java

Author: luc
Date: Tue Feb 22 19:52:48 2011
New Revision: 1073475

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

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java?rev=1073475&r1=1073474&r2=1073475&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java Tue Feb 22 19:52:48 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];