From 5f705bb1b03f5b4c1f0b2dc84978591eb09f6e72 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Tue, 22 Feb 2011 19:52:48 +0000 Subject: [PATCH] added missing @since tags JIRA: MATH-533 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1073475 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 d994a4278..85b23c8d4 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];