Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-04 Thread Alan Bateman
On Tue, 4 Apr 2023 17:32:35 GMT, Naoto Sato wrote: > Good point. Removed the @implNote tag for now and filed a separate issue to > clarify the system property: https://bugs.openjdk.org/browse/JDK-8305595 Okay, that works for me. - PR Review Comment:

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v3]

2023-04-04 Thread Alan Bateman
On Tue, 4 Apr 2023 17:30:00 GMT, Naoto Sato wrote: >> This is a precursor to the future removal of the `COMPAT` locale data >> provider. Before the actual removal of the provider, warn the users who >> explicitly specify `COMPAT` at the command line in order for their smooth >> migration to

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-04 Thread Naoto Sato
On Tue, 4 Apr 2023 06:54:38 GMT, Alan Bateman wrote: >> Locale providers provided by users can all be loaded in the name of `SPI`, >> as they are the real implementation of `LocaleServiceProvider` class, so the >> order of the preference can be specified against JDK's `CLDR` provider. Does >>

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v3]

2023-04-04 Thread Naoto Sato
> This is a precursor to the future removal of the `COMPAT` locale data > provider. Before the actual removal of the provider, warn the users who > explicitly specify `COMPAT` at the command line in order for their smooth > migration to CLDR. A CSR has also been drafted. Naoto Sato has updated

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-04 Thread Alan Bateman
On Mon, 3 Apr 2023 20:15:49 GMT, Naoto Sato wrote: > Locale providers provided by users can all be loaded in the name of `SPI`, as > they are the real implementation of `LocaleServiceProvider` class, so the > order of the preference can be specified against JDK's `CLDR` provider. Does > this

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-03 Thread Naoto Sato
On Mon, 3 Apr 2023 19:56:03 GMT, Alan Bateman wrote: >> Naoto Sato has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Replaced "Java Runtime Environment" with "JDK Reference Implementation" > >

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-03 Thread Alan Bateman
On Mon, 3 Apr 2023 18:11:03 GMT, Naoto Sato wrote: >> This is a precursor to the future removal of the `COMPAT` locale data >> provider. Before the actual removal of the provider, warn the users who >> explicitly specify `COMPAT` at the command line in order for their smooth >> migration to

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-03 Thread Naoto Sato
On Mon, 3 Apr 2023 17:25:57 GMT, Alan Bateman wrote: >> Naoto Sato has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Replaced "Java Runtime Environment" with "JDK Reference Implementation" > >

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider [v2]

2023-04-03 Thread Naoto Sato
> This is a precursor to the future removal of the `COMPAT` locale data > provider. Before the actual removal of the provider, warn the users who > explicitly specify `COMPAT` at the command line in order for their smooth > migration to CLDR. A CSR has also been drafted. Naoto Sato has updated

Re: RFR: 8304982: Emit warning for removal of `COMPAT` provider

2023-04-03 Thread Alan Bateman
On Mon, 3 Apr 2023 16:47:40 GMT, Naoto Sato wrote: > This is a precursor to the future removal of the `COMPAT` locale data > provider. Before the actual removal of the provider, warn the users who > explicitly specify `COMPAT` at the command line in order for their smooth > migration to CLDR.

RFR: 8304982: Emit warning for removal of `COMPAT` provider

2023-04-03 Thread Naoto Sato
This is a precursor to the future removal of the `COMPAT` locale data provider. Before the actual removal of the provider, warn the users who explicitly specify `COMPAT` at the command line in order for their smooth migration to CLDR. A CSR has also been drafted. - Commit