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
This commit is contained in:
Luc Maisonobe 2011-02-22 19:52:48 +00:00
parent 11fd051ad8
commit 5f705bb1b0
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];