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 348a6d9b4 Javadoc
348a6d9b4 is described below

commit 348a6d9b4d6c916a5b5d712e4a4daf48508100cc
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Apr 3 09:57:37 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/RandomUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/RandomUtils.java 
b/src/main/java/org/apache/commons/lang3/RandomUtils.java
index b29bd7f6e..17f5428c6 100644
--- a/src/main/java/org/apache/commons/lang3/RandomUtils.java
+++ b/src/main/java/org/apache/commons/lang3/RandomUtils.java
@@ -129,7 +129,7 @@ public static byte[] nextBytes(final int count) {
     }
 
     /**
-     * Generates a random double between 0 (inclusive) and Double.MAX_VALUE 
(exclusive).
+     * Generates a random double between 0 (inclusive) and {@link 
Double#MAX_VALUE} ({@value Double#MAX_VALUE} exclusive).
      *
      * @return the random double.
      * @see #nextDouble(double, double)
@@ -156,7 +156,7 @@ public static double nextDouble(final double 
startInclusive, final double endExc
     }
 
     /**
-     * Generates a random float between 0 (inclusive) and Float.MAX_VALUE 
(exclusive).
+     * Generates a random float between 0 (inclusive) and {@link 
Float#MAX_VALUE} ({@value Float#MAX_VALUE} exclusive).
      *
      * @return the random float.
      * @see #nextFloat(float, float)
@@ -183,7 +183,7 @@ public static float nextFloat(final float startInclusive, 
final float endExclusi
     }
 
     /**
-     * Generates a random int between 0 (inclusive) and Integer.MAX_VALUE 
(exclusive).
+     * Generates a random int between 0 (inclusive) and {@link 
Integer#MAX_VALUE} ({@value Integer#MAX_VALUE} exclusive).
      *
      * @return the random integer.
      * @see #nextInt(int, int)
@@ -210,7 +210,7 @@ public static int nextInt(final int startInclusive, final 
int endExclusive) {
     }
 
     /**
-     * Generates a random long between 0 (inclusive) and Long.MAX_VALUE 
(exclusive).
+     * Generates a random long between 0 (inclusive) and {@link 
Long#MAX_VALUE} ({@value Long#MAX_VALUE} exclusive).
      *
      * @return the random long.
      * @see #nextLong(long, long)
@@ -320,7 +320,7 @@ public byte[] randomBytes(final int count) {
     }
 
     /**
-     * Generates a random double between 0 (inclusive) and Double.MAX_VALUE 
(exclusive).
+     * Generates a random double between 0 (inclusive) and {@link 
Double#MAX_VALUE} ({@value Double#MAX_VALUE} exclusive).
      *
      * @return the random double.
      * @see #randomDouble(double, double)
@@ -378,7 +378,7 @@ public float randomFloat(final float startInclusive, final 
float endExclusive) {
     }
 
     /**
-     * Generates a random int between 0 (inclusive) and Integer.MAX_VALUE 
(exclusive).
+     * Generates a random int between 0 (inclusive) and {@link 
Integer#MAX_VALUE} ({@value Integer#MAX_VALUE} exclusive).
      *
      * @return the random integer.
      * @see #randomInt(int, int)
@@ -407,7 +407,7 @@ public int randomInt(final int startInclusive, final int 
endExclusive) {
     }
 
     /**
-     * Generates a random long between 0 (inclusive) and Long.MAX_VALUE 
(exclusive).
+     * Generates a random long between 0 (inclusive) and {@link 
Long#MAX_VALUE} ({@value Long#MAX_VALUE}, exclusive).
      *
      * @return the random long.
      * @see #randomLong(long, long)

Reply via email to