Skip to content

Commit 4916a1f

Browse files
committed
Javadoc
1 parent 31ec838 commit 4916a1f

37 files changed

+1863
-1925
lines changed

src/main/java/org/apache/commons/lang3/ArrayUtils.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5437,7 +5437,7 @@ public static <T> T[] removeAll(final T[] array, final int... indices) {
54375437
* @param element the element to remove.
54385438
* @return A new array containing the existing elements except the occurrences of the specified element.
54395439
* @since 3.5
5440-
* @deprecated Use {@link #removeAllOccurrences(boolean[], boolean)}
5440+
* @deprecated Use {@link #removeAllOccurrences(boolean[], boolean)}.
54415441
*/
54425442
@Deprecated
54435443
public static boolean[] removeAllOccurences(final boolean[] array, final boolean element) {
@@ -5456,7 +5456,7 @@ public static boolean[] removeAllOccurences(final boolean[] array, final boolean
54565456
* @param element the element to remove.
54575457
* @return A new array containing the existing elements except the occurrences of the specified element.
54585458
* @since 3.5
5459-
* @deprecated Use {@link #removeAllOccurrences(byte[], byte)}
5459+
* @deprecated Use {@link #removeAllOccurrences(byte[], byte)}.
54605460
*/
54615461
@Deprecated
54625462
public static byte[] removeAllOccurences(final byte[] array, final byte element) {
@@ -5475,7 +5475,7 @@ public static byte[] removeAllOccurences(final byte[] array, final byte element)
54755475
* @param element the element to remove.
54765476
* @return A new array containing the existing elements except the occurrences of the specified element.
54775477
* @since 3.5
5478-
* @deprecated Use {@link #removeAllOccurrences(char[], char)}
5478+
* @deprecated Use {@link #removeAllOccurrences(char[], char)}.
54795479
*/
54805480
@Deprecated
54815481
public static char[] removeAllOccurences(final char[] array, final char element) {
@@ -5494,7 +5494,7 @@ public static char[] removeAllOccurences(final char[] array, final char element)
54945494
* @param element the element to remove.
54955495
* @return A new array containing the existing elements except the occurrences of the specified element.
54965496
* @since 3.5
5497-
* @deprecated Use {@link #removeAllOccurrences(double[], double)}
5497+
* @deprecated Use {@link #removeAllOccurrences(double[], double)}.
54985498
*/
54995499
@Deprecated
55005500
public static double[] removeAllOccurences(final double[] array, final double element) {
@@ -5513,7 +5513,7 @@ public static double[] removeAllOccurences(final double[] array, final double el
55135513
* @param element the element to remove.
55145514
* @return A new array containing the existing elements except the occurrences of the specified element.
55155515
* @since 3.5
5516-
* @deprecated Use {@link #removeAllOccurrences(float[], float)}
5516+
* @deprecated Use {@link #removeAllOccurrences(float[], float)}.
55175517
*/
55185518
@Deprecated
55195519
public static float[] removeAllOccurences(final float[] array, final float element) {
@@ -5532,7 +5532,7 @@ public static float[] removeAllOccurences(final float[] array, final float eleme
55325532
* @param element the element to remove.
55335533
* @return A new array containing the existing elements except the occurrences of the specified element.
55345534
* @since 3.5
5535-
* @deprecated Use {@link #removeAllOccurrences(int[], int)}
5535+
* @deprecated Use {@link #removeAllOccurrences(int[], int)}.
55365536
*/
55375537
@Deprecated
55385538
public static int[] removeAllOccurences(final int[] array, final int element) {
@@ -5551,7 +5551,7 @@ public static int[] removeAllOccurences(final int[] array, final int element) {
55515551
* @param element the element to remove.
55525552
* @return A new array containing the existing elements except the occurrences of the specified element.
55535553
* @since 3.5
5554-
* @deprecated Use {@link #removeAllOccurrences(long[], long)}
5554+
* @deprecated Use {@link #removeAllOccurrences(long[], long)}.
55555555
*/
55565556
@Deprecated
55575557
public static long[] removeAllOccurences(final long[] array, final long element) {
@@ -5570,7 +5570,7 @@ public static long[] removeAllOccurences(final long[] array, final long element)
55705570
* @param element the element to remove.
55715571
* @return A new array containing the existing elements except the occurrences of the specified element.
55725572
* @since 3.5
5573-
* @deprecated Use {@link #removeAllOccurrences(short[], short)}
5573+
* @deprecated Use {@link #removeAllOccurrences(short[], short)}.
55745574
*/
55755575
@Deprecated
55765576
public static short[] removeAllOccurences(final short[] array, final short element) {
@@ -5590,7 +5590,7 @@ public static short[] removeAllOccurences(final short[] array, final short eleme
55905590
* @param element the element to remove, may be {@code null}.
55915591
* @return A new array containing the existing elements except the occurrences of the specified element.
55925592
* @since 3.5
5593-
* @deprecated Use {@link #removeAllOccurrences(Object[], Object)}
5593+
* @deprecated Use {@link #removeAllOccurrences(Object[], Object)}.
55945594
*/
55955595
@Deprecated
55965596
public static <T> T[] removeAllOccurences(final T[] array, final T element) {

src/main/java/org/apache/commons/lang3/JavaVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public enum JavaVersion {
7575
/**
7676
* Java 1.9.
7777
*
78-
* @deprecated As of release 3.5, replaced by {@link #JAVA_9}
78+
* @deprecated As of release 3.5, replaced by {@link #JAVA_9}.
7979
*/
8080
@Deprecated
8181
JAVA_1_9(9.0f, "9"),

src/main/java/org/apache/commons/lang3/ObjectUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ public static String identityToString(final Object object) {
820820
* @param object the object to create a toString for.
821821
* @since 3.2
822822
* @deprecated as of 3.6, because StrBuilder was moved to commons-text,
823-
* use one of the other {@code identityToString} methods instead
823+
* use one of the other {@code identityToString} methods instead.
824824
*/
825825
@Deprecated
826826
public static void identityToString(final StrBuilder builder, final Object object) {

0 commit comments

Comments
 (0)