From dedda82d129fe78978fce1dd51c6eedf285045d5 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Tue, 22 Feb 2011 19:52:17 +0000 Subject: [PATCH] added missing @since tags JIRA: MATH-533 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1073474 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/math/util/ResizableDoubleArray.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java b/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java index 37db61bfa..d7f822441 100644 --- a/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java +++ b/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java @@ -307,6 +307,7 @@ public class ResizableDoubleArray implements DoubleArray, Serializable { * 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];