Re: RFR: JDK-8296149: Start of release updates for JDK 21 [v3]

2022-12-03 Thread Joe Darcy
> Usual start-of-release updates. Symbol updates in initial version reflect JDK > 20 build 21. Joe Darcy has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contain

Re: RFR: 8295803: Console should be usable in jshell and other environments [v4]

2022-12-03 Thread Naoto Sato
> This is to allow Console to be used even when it is not attached to the > platform provided terminal, such as the case when the standard input is > redirected. `System.console()` now returns a Console implementation based on > `jdk.internal.le` terminal by default, or jshell implementation if

Re: RFR: 8298033: Character.codePointAt(char[], int, int) doesn't do JavaDoc-specified check [v3]

2022-12-03 Thread Sergey Tsypanov
On Fri, 2 Dec 2022 21:31:42 GMT, Roger Riggs wrote: >> Sergey Tsypanov has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8298033: Fix test > > test/jdk/java/lang/Character/Supplementary.java line 808: > >> 806: return; >>

jdeps - option to to analyze package-private API

2022-12-03 Thread Matej Turcel
Hello, I would like to propose a new option for jdeps, similar to --api-only, which would analyze not only private and protected API (like --api-only does), but also package-private API. In more detail, this option would report all dependencies which occur in all types (not only public ones), nam

Re: RFR: 8294693: Add Collections.shuffle overload that accepts RandomGenerator interface [v3]

2022-12-03 Thread Tagir F . Valeev
On Wed, 12 Oct 2022 13:26:29 GMT, Tagir F. Valeev wrote: >> Java 17 added RandomGenerator interface. However, existing method >> Collections.shuffle accepts old java.util.Random class. While since Java 19, >> it's possible to use Random.from(RandomGenerator) wrapper, it would be more >> conven