This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rng.git
commit 2d7df1163032e6eee7df4adadeae2d10ba2446ac Author: aherbert <[email protected]> AuthorDate: Thu Sep 26 15:43:31 2019 +0100 Removed the null seed argument to RandomSource.create. --- .../java/org/apache/commons/rng/simple/ThreadLocalRandomSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/ThreadLocalRandomSource.java b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/ThreadLocalRandomSource.java index 8a2c7dd..2d0af50 100644 --- a/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/ThreadLocalRandomSource.java +++ b/commons-rng-simple/src/main/java/org/apache/commons/rng/simple/ThreadLocalRandomSource.java @@ -95,7 +95,7 @@ public final class ThreadLocalRandomSource { @Override protected UniformRandomProvider initialValue() { // Create with the default seed generation method - return RandomSource.create(source, null); + return RandomSource.create(source); } }
