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:
parent
2ef0296835
commit
dedda82d12
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue