On Mon, 28 Feb 2022 18:49:59 GMT, ExE Boss <d...@openjdk.java.net> wrote:
>> Yasser Bazzi has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Update javadoc > > src/java.base/share/classes/java/util/Random.java line 93: > >> 91: >> 92: @SuppressWarnings("serial") >> 93: private static class RandomWrapper extends Random implements >> RandomGenerator { > > This class should also override all the default methods in `RandomGenerator` > and forward them to `this.generator`. The method overridden in this class are exactly those present in `RandomGenerator` itself, which are also the API methods of `Random`. ------------- PR: https://git.openjdk.java.net/jdk/pull/7001