From 2a8061f4ad8903a9c6d46b404973bdbd84385d39 Mon Sep 17 00:00:00 2001 From: Gilles Date: Mon, 28 Dec 2015 16:46:31 +0100 Subject: [PATCH] Javadoc. --- .../apache/commons/math4/random/BaseRandomGenerator.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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. *