This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 7b8f3b9f1 Javadoc
7b8f3b9f1 is described below
commit 7b8f3b9f199ca424e20ca56d98e742bdfc838748
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jan 22 08:24:23 2026 -0500
Javadoc
Add ','s.
---
src/main/java/org/apache/commons/lang3/StringUtils.java | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index cb18f8f93..40abdcaee 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -1519,7 +1519,7 @@ public static int countMatches(final CharSequence str,
final CharSequence sub) {
}
/**
- * Returns either the passed in CharSequence, or if the CharSequence is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
+ * Returns either the passed in CharSequence, or if the CharSequence is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
* {@code null}), the value of {@code defaultStr}.
*
* <p>
@@ -1536,7 +1536,7 @@ public static int countMatches(final CharSequence str,
final CharSequence sub) {
*
* @param <T> the specific kind of CharSequence.
* @param str the CharSequence to check, may be null.
- * @param defaultStr the default CharSequence to return if {@code str} is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
+ * @param defaultStr the default CharSequence to return if {@code str} is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
* {@code null}); may be null.
* @return the passed in CharSequence, or the default.
* @see StringUtils#defaultString(String, String)
@@ -2144,7 +2144,7 @@ public static int getFuzzyDistance(final CharSequence
term, final CharSequence q
}
/**
- * Returns either the passed in CharSequence, or if the CharSequence is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or
+ * Returns either the passed in CharSequence, or if the CharSequence is
{@link #isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or
* {@code null}), the value supplied by {@code defaultStrSupplier}.
*
* <p>
@@ -2168,7 +2168,7 @@ public static int getFuzzyDistance(final CharSequence
term, final CharSequence q
* @param <T> the specific kind of CharSequence.
* @param str the CharSequence to check, may be null.
* @param defaultSupplier the supplier of default CharSequence to return
if the input is {@link #isBlank(CharSequence) blank} (whitespaces, empty
- * ({@code ""}) or {@code null}); may be null.
+ * ({@code ""}), or {@code null}); may be null.
* @return the passed in CharSequence, or the default
* @see StringUtils#defaultString(String, String)
* @see #isBlank(CharSequence)
@@ -3394,7 +3394,7 @@ public static boolean isAlphaSpace(final CharSequence cs)
{
}
/**
- * Tests if any of the CharSequences are {@link #isBlank(CharSequence)
blank} (whitespaces, empty ({@code ""}) or {@code null}).
+ * Tests if any of the CharSequences are {@link #isBlank(CharSequence)
blank} (whitespaces, empty ({@code ""}), or {@code null}).
*
* <p>
* Whitespace is defined by {@link Character#isWhitespace(char)}.
@@ -3415,7 +3415,7 @@ public static boolean isAlphaSpace(final CharSequence cs)
{
* </pre>
*
* @param css the CharSequences to check, may be null or empty.
- * @return {@code true} if any of the CharSequences are {@link
#isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
+ * @return {@code true} if any of the CharSequences are {@link
#isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code
null}).
* @see #isBlank(CharSequence)
* @since 3.2
*/
@@ -3650,7 +3650,7 @@ public static boolean isNoneEmpty(final CharSequence...
css) {
}
/**
- * Tests if a CharSequence is not {@link #isBlank(CharSequence) blank}
(whitespaces, empty ({@code ""}) or {@code null}).
+ * Tests if a CharSequence is not {@link #isBlank(CharSequence) blank}
(whitespaces, empty ({@code ""}), or {@code null}).
*
* <p>
* Whitespace is defined by {@link Character#isWhitespace(char)}.
@@ -3665,7 +3665,7 @@ public static boolean isNoneEmpty(final CharSequence...
css) {
* </pre>
*
* @param cs the CharSequence to check, may be null.
- * @return {@code true} if the CharSequence is not {@link
#isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}) or {@code null}).
+ * @return {@code true} if the CharSequence is not {@link
#isBlank(CharSequence) blank} (whitespaces, empty ({@code ""}), or {@code
null}).
* @see #isBlank(CharSequence)
* @since 2.0
* @since 3.0 Changed signature from isNotBlank(String) to
isNotBlank(CharSequence)