mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-08 02:58:33 +00:00
Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git
This commit is contained in:
commit
f909f466e3
@ -119,8 +119,8 @@ The <action> type attribute can be add,update,fix,remove.
|
||||
<action type="fix" dev="ggregory" due-to="laurentschoelens, Bruno P. Kinoshita, Diego Marcilio">[LANG-1681] Fix some FieldUtils Javadocs #1047.</action>
|
||||
<action type="fix" dev="ggregory" due-to="Arturo Bernal">Remove unnecessary statement in DurationFormatUtils #965.</action>
|
||||
<action issue="LANG-1699" type="fix" dev="ggregory" due-to="Darren Coleman">Corrected value of SystemUtils.JAVA_VENDOR #1066.</action>
|
||||
<action type="fix" dev="ggregory" due-to="step-security-bot, Gary Gregory">[StepSecurity] ci: Harden GitHub Actions #1067.</action>
|
||||
|
||||
<action type="fix" dev="ggregory" due-to="step-security-bot, Gary Gregory">[StepSecurity] ci: Harden GitHub Actions #1067.</action>
|
||||
<action type="fix" dev="ggregory" due-to="Dimitrios Efthymiou">Update Javadoc for the insert methods in ArrayUtils #1078.</action>
|
||||
<!-- ADD -->
|
||||
<action type="add" dev="ggregory" due-to="Gary Gregory">Add GitHub coverage.yml.</action>
|
||||
<action type="add" dev="ggregory" due-to="Gary Gregory">Add EnumUtils.getEnumSystemProperty(...).</action>
|
||||
|
@ -2775,7 +2775,7 @@ public static int indexOf(final short[] array, final short valueToFind, int star
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -2817,7 +2817,7 @@ public static boolean[] insert(final int index, final boolean[] array, final boo
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -2859,7 +2859,7 @@ public static byte[] insert(final int index, final byte[] array, final byte... v
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -2901,7 +2901,7 @@ public static char[] insert(final int index, final char[] array, final char... v
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -2943,7 +2943,7 @@ public static double[] insert(final int index, final double[] array, final doubl
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -2985,7 +2985,7 @@ public static float[] insert(final int index, final float[] array, final float..
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -3027,7 +3027,7 @@ public static int[] insert(final int index, final int[] array, final int... valu
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -3069,7 +3069,7 @@ public static long[] insert(final int index, final long[] array, final long... v
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
@ -3112,7 +3112,7 @@ public static short[] insert(final int index, final short[] array, final short..
|
||||
* @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.
|
||||
* @return The new array or {@code null} if the given array is {@code null}.
|
||||
* @throws IndexOutOfBoundsException if {@code array} is provided
|
||||
* and either {@code index < 0} or {@code index > array.length}
|
||||
* @since 3.6
|
||||
|
Loading…
x
Reference in New Issue
Block a user