Skip to content

Commit 5e91a0f

Browse files
committed
No need for blank Javadoc lines between Javadoc @ tags
1 parent d083fa5 commit 5e91a0f

38 files changed

+0
-110
lines changed

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

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5442,7 +5442,6 @@ public static <T> T[] removeAll(final T[] array, final int... indices) {
54425442
*
54435443
* @param element the element to remove
54445444
* @param array the input array
5445-
*
54465445
* @return A new array containing the existing elements except the occurrences of the specified element.
54475446
* @since 3.5
54485447
* @deprecated Use {@link #removeAllOccurrences(boolean[], boolean)}
@@ -5462,7 +5461,6 @@ public static boolean[] removeAllOccurences(final boolean[] array, final boolean
54625461
*
54635462
* @param element the element to remove
54645463
* @param array the input array
5465-
*
54665464
* @return A new array containing the existing elements except the occurrences of the specified element.
54675465
* @since 3.5
54685466
* @deprecated Use {@link #removeAllOccurrences(byte[], byte)}
@@ -5482,7 +5480,6 @@ public static byte[] removeAllOccurences(final byte[] array, final byte element)
54825480
*
54835481
* @param element the element to remove
54845482
* @param array the input array
5485-
*
54865483
* @return A new array containing the existing elements except the occurrences of the specified element.
54875484
* @since 3.5
54885485
* @deprecated Use {@link #removeAllOccurrences(char[], char)}
@@ -5502,7 +5499,6 @@ public static char[] removeAllOccurences(final char[] array, final char element)
55025499
*
55035500
* @param element the element to remove
55045501
* @param array the input array
5505-
*
55065502
* @return A new array containing the existing elements except the occurrences of the specified element.
55075503
* @since 3.5
55085504
* @deprecated Use {@link #removeAllOccurrences(double[], double)}
@@ -5522,7 +5518,6 @@ public static double[] removeAllOccurences(final double[] array, final double el
55225518
*
55235519
* @param element the element to remove
55245520
* @param array the input array
5525-
*
55265521
* @return A new array containing the existing elements except the occurrences of the specified element.
55275522
* @since 3.5
55285523
* @deprecated Use {@link #removeAllOccurrences(float[], float)}
@@ -5542,7 +5537,6 @@ public static float[] removeAllOccurences(final float[] array, final float eleme
55425537
*
55435538
* @param element the element to remove
55445539
* @param array the input array
5545-
*
55465540
* @return A new array containing the existing elements except the occurrences of the specified element.
55475541
* @since 3.5
55485542
* @deprecated Use {@link #removeAllOccurrences(int[], int)}
@@ -5562,7 +5556,6 @@ public static int[] removeAllOccurences(final int[] array, final int element) {
55625556
*
55635557
* @param element the element to remove
55645558
* @param array the input array
5565-
*
55665559
* @return A new array containing the existing elements except the occurrences of the specified element.
55675560
* @since 3.5
55685561
* @deprecated Use {@link #removeAllOccurrences(long[], long)}
@@ -5582,7 +5575,6 @@ public static long[] removeAllOccurences(final long[] array, final long element)
55825575
*
55835576
* @param element the element to remove
55845577
* @param array the input array
5585-
*
55865578
* @return A new array containing the existing elements except the occurrences of the specified element.
55875579
* @since 3.5
55885580
* @deprecated Use {@link #removeAllOccurrences(short[], short)}
@@ -5603,7 +5595,6 @@ public static short[] removeAllOccurences(final short[] array, final short eleme
56035595
* @param <T> the type of object in the array
56045596
* @param element the element to remove
56055597
* @param array the input array
5606-
*
56075598
* @return A new array containing the existing elements except the occurrences of the specified element.
56085599
* @since 3.5
56095600
* @deprecated Use {@link #removeAllOccurrences(Object[], Object)}
@@ -5623,7 +5614,6 @@ public static <T> T[] removeAllOccurences(final T[] array, final T element) {
56235614
*
56245615
* @param element the element to remove
56255616
* @param array the input array
5626-
*
56275617
* @return A new array containing the existing elements except the occurrences of the specified element.
56285618
* @since 3.10
56295619
*/
@@ -5641,7 +5631,6 @@ public static boolean[] removeAllOccurrences(final boolean[] array, final boolea
56415631
*
56425632
* @param element the element to remove
56435633
* @param array the input array
5644-
*
56455634
* @return A new array containing the existing elements except the occurrences of the specified element.
56465635
* @since 3.10
56475636
*/
@@ -5659,7 +5648,6 @@ public static byte[] removeAllOccurrences(final byte[] array, final byte element
56595648
*
56605649
* @param element the element to remove
56615650
* @param array the input array
5662-
*
56635651
* @return A new array containing the existing elements except the occurrences of the specified element.
56645652
* @since 3.10
56655653
*/
@@ -5677,7 +5665,6 @@ public static char[] removeAllOccurrences(final char[] array, final char element
56775665
*
56785666
* @param element the element to remove
56795667
* @param array the input array
5680-
*
56815668
* @return A new array containing the existing elements except the occurrences of the specified element.
56825669
* @since 3.10
56835670
*/
@@ -5695,7 +5682,6 @@ public static double[] removeAllOccurrences(final double[] array, final double e
56955682
*
56965683
* @param element the element to remove
56975684
* @param array the input array
5698-
*
56995685
* @return A new array containing the existing elements except the occurrences of the specified element.
57005686
* @since 3.10
57015687
*/
@@ -5713,7 +5699,6 @@ public static float[] removeAllOccurrences(final float[] array, final float elem
57135699
*
57145700
* @param element the element to remove
57155701
* @param array the input array
5716-
*
57175702
* @return A new array containing the existing elements except the occurrences of the specified element.
57185703
* @since 3.10
57195704
*/
@@ -5731,7 +5716,6 @@ public static int[] removeAllOccurrences(final int[] array, final int element) {
57315716
*
57325717
* @param element the element to remove
57335718
* @param array the input array
5734-
*
57355719
* @return A new array containing the existing elements except the occurrences of the specified element.
57365720
* @since 3.10
57375721
*/
@@ -5749,7 +5733,6 @@ public static long[] removeAllOccurrences(final long[] array, final long element
57495733
*
57505734
* @param element the element to remove
57515735
* @param array the input array
5752-
*
57535736
* @return A new array containing the existing elements except the occurrences of the specified element.
57545737
* @since 3.10
57555738
*/
@@ -5768,7 +5751,6 @@ public static short[] removeAllOccurrences(final short[] array, final short elem
57685751
* @param <T> the type of object in the array
57695752
* @param element the element to remove
57705753
* @param array the input array
5771-
*
57725754
* @return A new array containing the existing elements except the occurrences of the specified element.
57735755
* @since 3.10
57745756
*/

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ public static void serialize(final Serializable obj, final OutputStream outputSt
258258
* <p>This constructor is public to permit tools that require a JavaBean instance
259259
* to operate.</p>
260260
* @since 2.0
261-
*
262261
* @deprecated TODO Make private in 4.0.
263262
*/
264263
@Deprecated

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ public static final String escapeCsv(final String input) {
459459
*
460460
* @param input String to escape values in, may be null
461461
* @return String with escaped values, {@code null} if null string input
462-
*
463462
* @since 3.0
464463
*/
465464
public static final String escapeEcmaScript(final String input) {
@@ -472,7 +471,6 @@ public static final String escapeEcmaScript(final String input) {
472471
*
473472
* @param input the {@link String} to escape, may be null
474473
* @return a new escaped {@link String}, {@code null} if null string input
475-
*
476474
* @since 3.0
477475
*/
478476
public static final String escapeHtml3(final String input) {
@@ -497,13 +495,11 @@ public static final String escapeHtml3(final String input) {
497495
*
498496
* @param input the {@link String} to escape, may be null
499497
* @return a new escaped {@link String}, {@code null} if null string input
500-
*
501498
* @see <a href="https://web.archive.org/web/20060225074150/https://hotwired.lycos.com/webmonkey/reference/special_characters/">ISO Entities</a>
502499
* @see <a href="https://www.w3.org/TR/REC-html32#latin1">HTML 3.2 Character Entities for ISO Latin-1</a>
503500
* @see <a href="https://www.w3.org/TR/REC-html40/sgml/entities.html">HTML 4.0 Character entity references</a>
504501
* @see <a href="https://www.w3.org/TR/html401/charset.html#h-5.3">HTML 4.01 Character References</a>
505502
* @see <a href="https://www.w3.org/TR/html401/charset.html#code-position">HTML 4.01 Code positions</a>
506-
*
507503
* @since 3.0
508504
*/
509505
public static final String escapeHtml4(final String input) {
@@ -555,7 +551,6 @@ public static final String escapeJava(final String input) {
555551
*
556552
* @param input String to escape values in, may be null
557553
* @return String with escaped values, {@code null} if null string input
558-
*
559554
* @since 3.2
560555
*/
561556
public static final String escapeJson(final String input) {
@@ -684,7 +679,6 @@ public static final String unescapeCsv(final String input) {
684679
* @see #unescapeJava(String)
685680
* @param input the {@link String} to unescape, may be null
686681
* @return A new unescaped {@link String}, {@code null} if null string input
687-
*
688682
* @since 3.0
689683
*/
690684
public static final String unescapeEcmaScript(final String input) {
@@ -698,7 +692,6 @@ public static final String unescapeEcmaScript(final String input) {
698692
*
699693
* @param input the {@link String} to unescape, may be null
700694
* @return a new unescaped {@link String}, {@code null} if null string input
701-
*
702695
* @since 3.0
703696
*/
704697
public static final String unescapeHtml3(final String input) {
@@ -719,7 +712,6 @@ public static final String unescapeHtml3(final String input) {
719712
*
720713
* @param input the {@link String} to unescape, may be null
721714
* @return a new unescaped {@link String}, {@code null} if null string input
722-
*
723715
* @since 3.0
724716
*/
725717
public static final String unescapeHtml4(final String input) {
@@ -749,7 +741,6 @@ public static final String unescapeJava(final String input) {
749741
* @see #unescapeJava(String)
750742
* @param input the {@link String} to unescape, may be null
751743
* @return A new unescaped {@link String}, {@code null} if null string input
752-
*
753744
* @since 3.2
754745
*/
755746
public static final String unescapeJson(final String input) {

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5381,7 +5381,6 @@ public static String mid(final String str, int pos, final int len) {
53815381
* href="https://www.w3.org/TR/xpath/#function-normalize-space">https://www.w3.org/TR/xpath/#function-normalize-space</a>
53825382
* @param str the source String to normalize whitespaces from, may be null
53835383
* @return the modified string with whitespace normalized, {@code null} if null String input
5384-
*
53855384
* @since 3.0
53865385
*/
53875386
public static String normalizeSpace(final String str) {
@@ -5752,7 +5751,6 @@ public static String remove(final String str, final String remove) {
57525751
* @see java.util.regex.Pattern
57535752
* @see java.util.regex.Pattern#DOTALL
57545753
* @since 3.5
5755-
*
57565754
* @deprecated Moved to RegExUtils.
57575755
*/
57585756
@Deprecated
@@ -5863,7 +5861,6 @@ public static String removeEndIgnoreCase(final String str, final String remove)
58635861
* @see java.util.regex.Pattern
58645862
* @see java.util.regex.Pattern#DOTALL
58655863
* @since 3.5
5866-
*
58675864
* @deprecated Moved to RegExUtils.
58685865
*/
58695866
@Deprecated
@@ -5936,7 +5933,6 @@ public static String removeIgnoreCase(final String str, final String remove) {
59365933
* @see Pattern#DOTALL
59375934
* @since 3.2
59385935
* @since 3.5 Changed {@code null} reference passed to this method is a no-op.
5939-
*
59405936
* @deprecated Moved to RegExUtils.
59415937
*/
59425938
@Deprecated
@@ -6259,7 +6255,6 @@ public static String replace(final String text, final String searchString, final
62596255
* @see java.util.regex.Pattern
62606256
* @see java.util.regex.Pattern#DOTALL
62616257
* @since 3.5
6262-
*
62636258
* @deprecated Moved to RegExUtils.
62646259
*/
62656260
@Deprecated
@@ -6657,7 +6652,6 @@ public static String replaceEachRepeatedly(final String text, final String[] sea
66576652
* @see java.util.regex.Pattern
66586653
* @see java.util.regex.Pattern#DOTALL
66596654
* @since 3.5
6660-
*
66616655
* @deprecated Moved to RegExUtils.
66626656
*/
66636657
@Deprecated
@@ -6828,7 +6822,6 @@ public static String replaceOnceIgnoreCase(final String text, final String searc
68286822
* @see Pattern#DOTALL
68296823
* @since 3.2
68306824
* @since 3.5 Changed {@code null} reference passed to this method is a no-op.
6831-
*
68326825
* @deprecated Moved to RegExUtils.
68336826
*/
68346827
@Deprecated
@@ -7927,7 +7920,6 @@ public static String strip(String str, final String stripChars) {
79277920
*
79287921
* @param input String to be stripped
79297922
* @return input text with diacritics removed
7930-
*
79317923
* @since 3.0
79327924
*/
79337925
// See also Lucene's ASCIIFoldingFilter (Lucene 2.9) that replaces accented characters by their unaccented equivalent (and uncommitted bug fix: https://issues.apache.org/jira/browse/LUCENE-1343?focusedCommentId=12858907&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_12858907).

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,6 @@ public class SystemUtils {
862862
* </p>
863863
*
864864
* @since 3.4
865-
*
866865
* @deprecated As of release 3.5, replaced by {@link #IS_JAVA_9}
867866
*/
868867
@Deprecated

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,6 @@ public static Collection<ThreadGroup> findThreadGroupsByName(final String thread
342342
*
343343
* @param predicate the predicate
344344
* @return An unmodifiable {@link Collection} of active threads matching the given predicate
345-
*
346345
* @throws NullPointerException if the predicate is null
347346
* @throws SecurityException
348347
* if the current thread cannot access the system thread group
@@ -401,7 +400,6 @@ public static Collection<Thread> findThreads(final ThreadGroup threadGroup, fina
401400
*
402401
* @param predicate the predicate
403402
* @return An unmodifiable {@link Collection} of active threads matching the given predicate
404-
*
405403
* @throws NullPointerException if the predicate is null
406404
* @throws SecurityException
407405
* if the current thread cannot access the system thread group

src/main/java/org/apache/commons/lang3/arch/Processor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public boolean is64Bit() {
199199
* Tests if {@link Processor} is type of Aarch64.
200200
*
201201
* @return {@code true}, if {@link Processor} is {@link Type#AARCH_64}, else {@code false}.
202-
*
203202
* @since 3.13.0
204203
*/
205204
public boolean isAarch64() {

src/main/java/org/apache/commons/lang3/builder/Builder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
* }</pre>
7171
*
7272
* @param <T> the type of object that the builder will construct or compute.
73-
*
7473
* @since 3.0
7574
*/
7675
@FunctionalInterface

src/main/java/org/apache/commons/lang3/builder/DiffResult.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* Use a {@link DiffBuilder} to build a {@link DiffResult} comparing two objects.
3434
* </p>
3535
* @param <T> type of the left and right object.
36-
*
3736
* @since 3.3
3837
*/
3938
public class DiffResult<T> implements Iterable<Diff<?>> {

src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ public class EqualsBuilder implements Builder<Boolean> {
117117
*
118118
* @param lhs {@code this} object
119119
* @param rhs the other object
120-
*
121120
* @return the pair
122121
*/
123122
static Pair<IDKey, IDKey> getRegisterPair(final Object lhs, final Object rhs) {
@@ -173,7 +172,6 @@ static boolean isRegistered(final Object lhs, final Object rhs) {
173172
* @param rhs the other object
174173
* @param testTransients whether to include transient fields
175174
* @return {@code true} if the two Objects have tested equals.
176-
*
177175
* @see EqualsExclude
178176
*/
179177
public static boolean reflectionEquals(final Object lhs, final Object rhs, final boolean testTransients) {
@@ -212,7 +210,6 @@ public static boolean reflectionEquals(final Object lhs, final Object rhs, final
212210
* fields recursively.
213211
* @param excludeFields array of field names to exclude from testing
214212
* @return {@code true} if the two Objects have tested equals.
215-
*
216213
* @see EqualsExclude
217214
* @since 3.6
218215
*/
@@ -260,7 +257,6 @@ public static boolean reflectionEquals(final Object lhs, final Object rhs, final
260257
* may be {@code null}
261258
* @param excludeFields array of field names to exclude from testing
262259
* @return {@code true} if the two Objects have tested equals.
263-
*
264260
* @see EqualsExclude
265261
* @since 2.0
266262
*/
@@ -288,7 +284,6 @@ public static boolean reflectionEquals(final Object lhs, final Object rhs, final
288284
* @param rhs the other object
289285
* @param excludeFields Collection of String field names to exclude from testing
290286
* @return {@code true} if the two Objects have tested equals.
291-
*
292287
* @see EqualsExclude
293288
*/
294289
public static boolean reflectionEquals(final Object lhs, final Object rhs, final Collection<String> excludeFields) {
@@ -314,7 +309,6 @@ public static boolean reflectionEquals(final Object lhs, final Object rhs, final
314309
* @param rhs the other object
315310
* @param excludeFields array of field names to exclude from testing
316311
* @return {@code true} if the two Objects have tested equals.
317-
*
318312
* @see EqualsExclude
319313
*/
320314
public static boolean reflectionEquals(final Object lhs, final Object rhs, final String... excludeFields) {

0 commit comments

Comments
 (0)