Skip to content

Commit 0cc7833

Browse files
author
Jim Laskey
committedMay 10, 2021
8265208: [JEP-356] : SplittableRandom and SplittableGenerators - splits() methods does not throw NullPointerException when source is null
Reviewed-by: rriggs
1 parent f78440a commit 0cc7833

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/java.base/share/classes/jdk/internal/util/random/RandomSupport.java

+2
Original file line numberDiff line numberDiff line change
@@ -2091,6 +2091,8 @@ public Stream<SplittableGenerator> splits(SplittableGenerator source) {
20912091
@Override
20922092
public Stream<SplittableGenerator> splits(long streamSize, SplittableGenerator source) {
20932093
RandomSupport.checkStreamSize(streamSize);
2094+
Objects.requireNonNull(source, "source should be non-null");
2095+
20942096
return StreamSupport.stream(makeSplitsSpliterator(0L, streamSize, source), false);
20952097
}
20962098

0 commit comments

Comments
 (0)
Please sign in to comment.