From a0f9db28319f45feb56982d21239fed451b6c3ef Mon Sep 17 00:00:00 2001 From: pascalschumacher Date: Mon, 6 Mar 2017 19:22:14 +0100 Subject: [PATCH] LANG-1314: Fix javadoc creation on with Java 8 Add @param for in ArrayUtils#insert --- src/main/java/org/apache/commons/lang3/ArrayUtils.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java b/src/main/java/org/apache/commons/lang3/ArrayUtils.java index b09e89189..4ced70c2b 100644 --- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java +++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java @@ -8408,12 +8408,13 @@ public class ArrayUtils { * ArrayUtils.insert(index, array, null) = cloned copy of 'array' * ArrayUtils.insert(index, null, values) = null * - * + * + * @param The type of elements in {@code array} and {@code values} * @param index the position within {@code array} to insert the new values * @param array the array to insert the values into, may be {@code null} * @param values the new values to insert, may be {@code null} * @return The new array. - * @throws IndexOutOfBoundsException if {@code array} is provided + * @throws IndexOutOfBoundsException if {@code array} is provided * and either {@code index < 0} or {@code index > array.length} * @since 3.6 */