Reverting commit 2a8061f4ad as per Gilles request.

The work on revamping the random packages is perfoemd in the random-ravamp branch.
This commit is contained in:
Luc Maisonobe 2016-01-17 11:35:25 +01:00
parent e7c659f590
commit 3c2fedeb09
1 changed files with 6 additions and 3 deletions

View File

@ -175,7 +175,8 @@ public abstract class BaseRandomGenerator
* Generates random bytes and places them into a user-supplied array.
*
* <p>
* The array is filled with bytes extracted from random integers.
* The array is filled with bytes extracted from random integers generated
* using {@link #nextInt()}.
* This implies that the number of random bytes generated may be larger than
* the length of the byte array.
* </p>
@ -191,7 +192,8 @@ public abstract class BaseRandomGenerator
* Generates random bytes and places them into a user-supplied array.
*
* <p>
* The array is filled with bytes extracted from random integers.
* The array is filled with bytes extracted from random integers generated
* using {@link #nextInt()}.
* This implies that the number of random bytes generated may be larger than
* the length of the byte array.
* </p>
@ -222,7 +224,8 @@ public abstract class BaseRandomGenerator
* Generates random bytes and places them into a user-supplied array.
*
* <p>
* The array is filled with bytes extracted from random integers.
* The array is filled with bytes extracted from random integers generated
* using {@link #nextInt()}.
* This implies that the number of random bytes generated may be larger than
* the length of the byte array.
* </p>