Skip to content

Commit 90762e0

Browse files
committed
Javadoc: Empty Javadoc line before the 1st tag.
1 parent c0d63d3 commit 90762e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+105
-15
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ public static String toString(final Annotation a) {
349349
*
350350
* <p>This constructor is public to permit tools that require a JavaBean
351351
* instance to operate.</p>
352+
*
352353
* @deprecated TODO Make private in 4.0.
353354
*/
354355
@Deprecated

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* Sorts and returns arrays in the fluent style.
2424
*
2525
* TODO For 4.0, rename to ArraySort, since we cover the sort() method here, see also ArrayFill.
26+
*
2627
* @since 3.12.0
2728
*/
2829
public class ArraySorter {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
* <p>
5656
* #ThreadSafe#
5757
* </p>
58+
*
5859
* @since 2.0
5960
*/
6061
public class ArrayUtils {

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* Each method documents its behavior in more detail.</p>
3232
*
3333
* <p>#ThreadSafe#</p>
34+
*
3435
* @since 2.0
3536
*/
3637
public class BooleanUtils {
@@ -274,6 +275,7 @@ public static Boolean negate(final Boolean bool) {
274275
* <p>
275276
* See also <a href="https://en.wikipedia.org/wiki/One-hot">One-hot</a>.
276277
* </p>
278+
*
277279
* @param array an array of {@code boolean}s
278280
* @return the result of the one-hot operations
279281
* @throws NullPointerException if {@code array} is {@code null}
@@ -372,6 +374,7 @@ public static Boolean or(final Boolean... array) {
372374

373375
/**
374376
* Returns a new array of possible values (like an enum would).
377+
*
375378
* @return a new array of possible values (like an enum would).
376379
* @since 3.12.0
377380
*/

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* <p>Instances are immutable.</p>
2828
*
2929
* <p>#ThreadSafe#</p>
30+
*
3031
* @since 1.0
3132
* @since 3.20.1 {@code serialVersionUID} changed from {@code 8270183163158333422L} to {@code 2L}.
3233
*/
@@ -335,6 +336,7 @@ public boolean isNegated() {
335336
* Returns an iterator which can be used to walk through the characters described by this range.
336337
*
337338
* <p>#NotThreadSafe# the iterator is not thread-safe</p>
339+
*
338340
* @return an iterator to the chars represented by this range
339341
* @since 2.5
340342
*/

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* <p>Instances are immutable, but instances of subclasses may not be.</p>
3131
*
3232
* <p>#ThreadSafe#</p>
33+
*
3334
* @since 1.0
3435
*/
3536
public class CharSet implements Serializable {
@@ -43,37 +44,43 @@ public class CharSet implements Serializable {
4344

4445
/**
4546
* A CharSet defining no characters.
47+
*
4648
* @since 2.0
4749
*/
4850
public static final CharSet EMPTY = new CharSet((String) null);
4951

5052
/**
5153
* A CharSet defining ASCII alphabetic characters "a-zA-Z".
54+
*
5255
* @since 2.0
5356
*/
5457
public static final CharSet ASCII_ALPHA = new CharSet("a-zA-Z");
5558

5659
/**
5760
* A CharSet defining ASCII alphabetic characters "a-z".
61+
*
5862
* @since 2.0
5963
*/
6064
public static final CharSet ASCII_ALPHA_LOWER = new CharSet("a-z");
6165

6266
/**
6367
* A CharSet defining ASCII alphabetic characters "A-Z".
68+
*
6469
* @since 2.0
6570
*/
6671
public static final CharSet ASCII_ALPHA_UPPER = new CharSet("A-Z");
6772

6873
/**
6974
* A CharSet defining ASCII alphabetic characters "0-9".
75+
*
7076
* @since 2.0
7177
*/
7278
public static final CharSet ASCII_NUMERIC = new CharSet("0-9");
7379

7480
/**
7581
* A Map of the common cases used in the factory.
7682
* Subclasses can add more common patterns if desired
83+
*
7784
* @since 2.0
7885
*/
7986
protected static final Map<String, CharSet> COMMON = Collections.synchronizedMap(new HashMap<>());

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* Each method documents its behavior in more detail.</p>
2727
*
2828
* <p>#ThreadSafe#</p>
29+
*
2930
* @see CharSet
3031
* @since 1.0
3132
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* Each method documents its behavior in more detail.</p>
2727
*
2828
* <p>#ThreadSafe#</p>
29+
*
2930
* @since 2.1
3031
*/
3132
public class CharUtils {

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
* Obviously, the second version is much more concise and the spirit of Lambda expressions is met better than the second
6969
* version.
7070
* </p>
71+
*
7172
* @since 3.9
7273
* @deprecated Use {@link org.apache.commons.lang3.function.Failable}.
7374
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* <p>The original error is wrapped within this one.</p>
2323
*
2424
* <p>#NotThreadSafe# because Throwable is not thread-safe</p>
25+
*
2526
* @since 1.0
2627
*/
2728
public class SerializationException extends RuntimeException {

0 commit comments

Comments
 (0)