This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new a8bc9f3dc Better text
a8bc9f3dc is described below

commit a8bc9f3dcf4939075ff9bc13c0dc263e61d8d98e
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Mar 6 15:11:37 2026 -0500

    Better text
---
 src/main/java/org/apache/commons/lang3/ArrayUtils.java | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java 
b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index 1288394db..aa47e4dab 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -5276,7 +5276,7 @@ public static <T> T[] remove(final T[] array, final int 
index) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5301,7 +5301,7 @@ public static boolean[] removeAll(final boolean[] array, 
final int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5330,7 +5330,7 @@ public static byte[] removeAll(final byte[] array, final 
int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5359,7 +5359,7 @@ public static char[] removeAll(final char[] array, final 
int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5388,7 +5388,7 @@ public static double[] removeAll(final double[] array, 
final int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5417,7 +5417,7 @@ public static float[] removeAll(final float[] array, 
final int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5446,7 +5446,7 @@ public static int[] removeAll(final int[] array, final 
int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5528,7 +5528,7 @@ static Object removeAll(final Object array, final int... 
indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>
@@ -5557,7 +5557,7 @@ public static short[] removeAll(final short[] array, 
final int... indices) {
      * array is always the same as that of the input array.
      * </p>
      * <p>
-     * If the input array is {@code null}, {@code null} will be returned.
+     * If the input array is {@code null}, then return {@code null}.
      * </p>
      *
      * <pre>

Reply via email to