@@ -5276,7 +5276,7 @@ public static <T> T[] remove(final T[] array, final int index) {
52765276 * array is always the same as that of the input array.
52775277 * </p>
52785278 * <p>
5279- * If the input array is {@code null}, {@code null} will be returned .
5279+ * If the input array is {@code null}, then return {@code null}.
52805280 * </p>
52815281 *
52825282 * <pre>
@@ -5301,7 +5301,7 @@ public static boolean[] removeAll(final boolean[] array, final int... indices) {
53015301 * array is always the same as that of the input array.
53025302 * </p>
53035303 * <p>
5304- * If the input array is {@code null}, {@code null} will be returned .
5304+ * If the input array is {@code null}, then return {@code null}.
53055305 * </p>
53065306 *
53075307 * <pre>
@@ -5330,7 +5330,7 @@ public static byte[] removeAll(final byte[] array, final int... indices) {
53305330 * array is always the same as that of the input array.
53315331 * </p>
53325332 * <p>
5333- * If the input array is {@code null}, {@code null} will be returned .
5333+ * If the input array is {@code null}, then return {@code null}.
53345334 * </p>
53355335 *
53365336 * <pre>
@@ -5359,7 +5359,7 @@ public static char[] removeAll(final char[] array, final int... indices) {
53595359 * array is always the same as that of the input array.
53605360 * </p>
53615361 * <p>
5362- * If the input array is {@code null}, {@code null} will be returned .
5362+ * If the input array is {@code null}, then return {@code null}.
53635363 * </p>
53645364 *
53655365 * <pre>
@@ -5388,7 +5388,7 @@ public static double[] removeAll(final double[] array, final int... indices) {
53885388 * array is always the same as that of the input array.
53895389 * </p>
53905390 * <p>
5391- * If the input array is {@code null}, {@code null} will be returned .
5391+ * If the input array is {@code null}, then return {@code null}.
53925392 * </p>
53935393 *
53945394 * <pre>
@@ -5417,7 +5417,7 @@ public static float[] removeAll(final float[] array, final int... indices) {
54175417 * array is always the same as that of the input array.
54185418 * </p>
54195419 * <p>
5420- * If the input array is {@code null}, {@code null} will be returned .
5420+ * If the input array is {@code null}, then return {@code null}.
54215421 * </p>
54225422 *
54235423 * <pre>
@@ -5446,7 +5446,7 @@ public static int[] removeAll(final int[] array, final int... indices) {
54465446 * array is always the same as that of the input array.
54475447 * </p>
54485448 * <p>
5449- * If the input array is {@code null}, {@code null} will be returned .
5449+ * If the input array is {@code null}, then return {@code null}.
54505450 * </p>
54515451 *
54525452 * <pre>
@@ -5528,7 +5528,7 @@ static Object removeAll(final Object array, final int... indices) {
55285528 * array is always the same as that of the input array.
55295529 * </p>
55305530 * <p>
5531- * If the input array is {@code null}, {@code null} will be returned .
5531+ * If the input array is {@code null}, then return {@code null}.
55325532 * </p>
55335533 *
55345534 * <pre>
@@ -5557,7 +5557,7 @@ public static short[] removeAll(final short[] array, final int... indices) {
55575557 * array is always the same as that of the input array.
55585558 * </p>
55595559 * <p>
5560- * If the input array is {@code null}, {@code null} will be returned .
5560+ * If the input array is {@code null}, then return {@code null}.
55615561 * </p>
55625562 *
55635563 * <pre>
0 commit comments