Re: RFR: 8318569: Add getter methods for Locale and Patterns in ListFormat

2023-10-22 Thread Hamlin Li
On Fri, 20 Oct 2023 17:57:46 GMT, Naoto Sato wrote: > Proposing adding getter methods for `locale` and `patterns` fields in the > `ListFormat` instances. Those fields are used for `equals()`, but without the > public getter methods, users cannot tell the reasoning of the equality of two > inst

Re: RFR: 8318569: Add getter methods for Locale and Patterns in ListFormat

2023-10-20 Thread Iris Clark
On Fri, 20 Oct 2023 17:57:46 GMT, Naoto Sato wrote: > Proposing adding getter methods for `locale` and `patterns` fields in the > `ListFormat` instances. Those fields are used for `equals()`, but without the > public getter methods, users cannot tell the reasoning of the equality of two > inst

Re: RFR: 8318569: Add getter methods for Locale and Patterns in ListFormat

2023-10-20 Thread Roger Riggs
On Fri, 20 Oct 2023 17:57:46 GMT, Naoto Sato wrote: > Proposing adding getter methods for `locale` and `patterns` fields in the > `ListFormat` instances. Those fields are used for `equals()`, but without the > public getter methods, users cannot tell the reasoning of the equality of two > inst

Re: RFR: 8318569: Add getter methods for Locale and Patterns in ListFormat

2023-10-20 Thread Joe Wang
On Fri, 20 Oct 2023 17:57:46 GMT, Naoto Sato wrote: > Proposing adding getter methods for `locale` and `patterns` fields in the > `ListFormat` instances. Those fields are used for `equals()`, but without the > public getter methods, users cannot tell the reasoning of the equality of two > inst

RFR: 8318569: Add getter methods for Locale and Patterns in ListFormat

2023-10-20 Thread Naoto Sato
Proposing adding getter methods for `locale` and `patterns` fields in the `ListFormat` instances. Those fields are used for `equals()`, but without the public getter methods, users cannot tell the reasoning of the equality of two instances. A corresponding CSR has also been drafted. ---