Re: RFR: 8297685: Typo in NullPointerException description specified by Locale.lookup

2022-11-28 Thread Jaikiran Pai
On Mon, 28 Nov 2022 17:53:43 GMT, Justin Lu wrote: > Problem: Javadoc in Locale.lookup is incorrect. Javadoc should match the > parameter arguments. See lines 3562-3563. > > Fix: For `@throws NullPointerException` replace `if priorityList or tags is > null` with `if priorityList or locales is

Re: RFR: 8297685: Typo in NullPointerException description specified by Locale.lookup

2022-11-28 Thread Lance Andersen
On Mon, 28 Nov 2022 17:53:43 GMT, Justin Lu wrote: > Problem: Javadoc in Locale.lookup is incorrect. Javadoc should match the > parameter arguments. See lines 3562-3563. > > Fix: For `@throws NullPointerException` replace `if priorityList or tags is > null` with `if priorityList or locales is

Re: RFR: 8297685: Typo in NullPointerException description specified by Locale.lookup

2022-11-28 Thread Naoto Sato
On Mon, 28 Nov 2022 17:53:43 GMT, Justin Lu wrote: > Problem: Javadoc in Locale.lookup is incorrect. Javadoc should match the > parameter arguments. See lines 3562-3563. > > Fix: For `@throws NullPointerException` replace `if priorityList or tags is > null` with `if priorityList or locales is

RFR: 8297685: Typo in NullPointerException description specified by Locale.lookup

2022-11-28 Thread Justin Lu
Problem: Javadoc in Locale.lookup is incorrect. Javadoc should match the parameter arguments. See lines 3562-3563. Fix: For `@throws NullPointerException` replace `if priorityList or tags is null` with `if priorityList or locales is null `. - Commit messages: - Replace tags with l