Skip to content

Commit 7b8f3b9

Browse files
committed
Javadoc
Add ','s.
1 parent b828652 commit 7b8f3b9

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ public static int countMatches(final CharSequence str, final CharSequence sub) {
15191519
}
15201520

15211521
/**
1522-
* Returns either the passed in CharSequence, or if the CharSequence is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
1522+
* Returns either the passed in CharSequence, or if the CharSequence is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
15231523
* {@code null}), the value of {@code defaultStr}.
15241524
*
15251525
* <p>
@@ -1536,7 +1536,7 @@ public static int countMatches(final CharSequence str, final CharSequence sub) {
15361536
*
15371537
* @param <T> the specific kind of CharSequence.
15381538
* @param str the CharSequence to check, may be null.
1539-
* @param defaultStr the default CharSequence to return if {@code str} is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
1539+
* @param defaultStr the default CharSequence to return if {@code str} is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
15401540
* {@code null}); may be null.
15411541
* @return the passed in CharSequence, or the default.
15421542
* @see StringUtils#defaultString(String, String)
@@ -2144,7 +2144,7 @@ public static int getFuzzyDistance(final CharSequence term, final CharSequence q
21442144
}
21452145

21462146
/**
2147-
* Returns either the passed in CharSequence, or if the CharSequence is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
2147+
* Returns either the passed in CharSequence, or if the CharSequence is {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
21482148
* {@code null}), the value supplied by {@code defaultStrSupplier}.
21492149
*
21502150
* <p>
@@ -2168,7 +2168,7 @@ public static int getFuzzyDistance(final CharSequence term, final CharSequence q
21682168
* @param <T> the specific kind of CharSequence.
21692169
* @param str the CharSequence to check, may be null.
21702170
* @param defaultSupplier the supplier of default CharSequence to return if the input is {@link #isBlank(CharSequence) blank} (whitespaces, empty
2171-
* ({@code ""}) or {@code null}); may be null.
2171+
* ({@code ""}), or {@code null}); may be null.
21722172
* @return the passed in CharSequence, or the default
21732173
* @see StringUtils#defaultString(String, String)
21742174
* @see #isBlank(CharSequence)
@@ -3394,7 +3394,7 @@ public static boolean isAlphaSpace(final CharSequence cs) {
33943394
}
33953395

33963396
/**
3397-
* Tests if any of the CharSequences are {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
3397+
* Tests if any of the CharSequences are {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code null}).
33983398
*
33993399
* <p>
34003400
* Whitespace is defined by {@link Character#isWhitespace(char)}.
@@ -3415,7 +3415,7 @@ public static boolean isAlphaSpace(final CharSequence cs) {
34153415
* </pre>
34163416
*
34173417
* @param css the CharSequences to check, may be null or empty.
3418-
* @return {@code true} if any of the CharSequences are {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
3418+
* @return {@code true} if any of the CharSequences are {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code null}).
34193419
* @see #isBlank(CharSequence)
34203420
* @since 3.2
34213421
*/
@@ -3650,7 +3650,7 @@ public static boolean isNoneEmpty(final CharSequence... css) {
36503650
}
36513651

36523652
/**
3653-
* Tests if a CharSequence is not {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
3653+
* Tests if a CharSequence is not {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code null}).
36543654
*
36553655
* <p>
36563656
* Whitespace is defined by {@link Character#isWhitespace(char)}.
@@ -3665,7 +3665,7 @@ public static boolean isNoneEmpty(final CharSequence... css) {
36653665
* </pre>
36663666
*
36673667
* @param cs the CharSequence to check, may be null.
3668-
* @return {@code true} if the CharSequence is not {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
3668+
* @return {@code true} if the CharSequence is not {@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code null}).
36693669
* @see #isBlank(CharSequence)
36703670
* @since 2.0
36713671
* @since 3.0 Changed signature from isNotBlank(String) to isNotBlank(CharSequence)

0 commit comments

Comments
 (0)