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 9cbf06867 Javadoc
9cbf06867 is described below
commit 9cbf068672d7250b90d21c474ed70bfe271ba14e
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Sep 18 10:53:55 2025 -0400
Javadoc
---
src/main/java/org/apache/commons/lang3/RandomStringUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
b/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
index 5f0392e3a..9ff104d6b 100644
--- a/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/RandomStringUtils.java
@@ -187,7 +187,7 @@ public static String random(final int count, final char...
chars) {
* @param numbers if {@code true}, generated string may include numeric
characters.
* @return the random string.
* @throws IllegalArgumentException if {@code count} < 0.
- * @deprecated Use {@link #next(int, int, int, boolean)} from {@link
#secure()}, {@link #secureStrong()}, or {@link #insecure()}.
+ * @deprecated Use {@link #next(int, int, int, boolean, boolean)} from
{@link #secure()}, {@link #secureStrong()}, or {@link #insecure()}.
*/
@Deprecated
public static String random(final int count, final int start, final int
end, final boolean letters,