LANG-1442: Commons-RNG citation

This commit is contained in:
Rob Tompkins 2019-04-06 09:02:56 -04:00
parent 6e797a40a7
commit 3f43706192
3 changed files with 11 additions and 0 deletions

View File

@ -46,6 +46,7 @@ The <action> type attribute can be add,update,fix,remove.
<body>
<release version="3.9" date="????-??-??" description="??">
<action issue="LANG-1442" type="add" dev="chtompki">Javadoc pointing to Commons RNG.</action>
<action issue="LANG-1416" type="update" dev="britter">Add more SystemUtils.IS_JAVA_XX variants.</action>
<action type="add" dev="jochen">Adding the Functions class.</action>
<action issue="LANG-1416" type="update" dev="britter">Update to JUnit 5</action>

View File

@ -37,6 +37,11 @@ import java.util.Random;
* of {@link Random} are not cryptographically secure. Consider instead using a more
* cryptographically secure pseudo-random number generator, for which we have no utility class.</p>
*
* <p>We would like to further note to users that the Apache Commons Project has
* a component entirely dedicated to random number generation, namely
* <a href="http://commons.apache.org/rng">Commons RNG</a>. For a more extensive
* treatment of random numbers, we suggest that the user use this library.</p>
*
* <p>#ThreadSafe#</p>
* @since 1.0
*/

View File

@ -25,6 +25,11 @@ import java.util.Random;
* secure. Consider instead using a more cryptographically secure pseudo-random
* number generator, for which we have no utility class.</p>
*
* <p>We would like to further note to users that the Apache Commons Project has
* a component entirely dedicated to random number generation, namely
* <a href="http://commons.apache.org/rng">Commons RNG</a>. For a more extensive
* treatment of random numbers, we suggest that the user use this library.</p>
*
* @since 3.3
*/
public class RandomUtils {