diff --git a/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java b/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java index a78fd3882..2d78005aa 100644 --- a/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java +++ b/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java @@ -175,8 +175,7 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *

- * The array is filled with bytes extracted from random integers generated - * using {@link #nextInt()}. + * The array is filled with bytes extracted from random integers. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *

@@ -192,8 +191,7 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *

- * The array is filled with bytes extracted from random integers generated - * using {@link #nextInt()}. + * The array is filled with bytes extracted from random integers. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *

@@ -224,8 +222,7 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *

- * The array is filled with bytes extracted from random integers generated - * using {@link #nextInt()}. + * The array is filled with bytes extracted from random integers. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *