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
This commit is contained in:
Luc Maisonobe 2011-02-22 19:52:17 +00:00
parent 2ef0296835
commit dedda82d12
1 changed files with 1 additions and 0 deletions

View File

@ -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];