Re: RFR: 8351074: Disallow null prefix and suffix in DecimalFormat [v2]

2025-03-05 Thread Naoto Sato
On Tue, 4 Mar 2025 01:47:40 GMT, Justin Lu wrote: >> Please review this PR and associated CSR which disallows passing null to 4 >> `DecimalFormat` prefix/suffix setter methods. >> >> Currently these setters do not check the input String for null. When the >> prefix/suffix is null, any such Dec

Re: RFR: 8351074: Disallow null prefix and suffix in DecimalFormat [v3]

2025-03-04 Thread Naoto Sato
On Tue, 4 Mar 2025 18:12:48 GMT, Justin Lu wrote: >> Please review this PR and associated CSR which disallows passing null to 4 >> `DecimalFormat` prefix/suffix setter methods. >> >> Currently these setters do not check the input String for null. When the >> prefix/suffix is null, any such Dec

Re: RFR: 8351074: Disallow null prefix and suffix in DecimalFormat [v3]

2025-03-04 Thread Justin Lu
> Please review this PR and associated CSR which disallows passing null to 4 > `DecimalFormat` prefix/suffix setter methods. > > Currently these setters do not check the input String for null. When the > prefix/suffix is null, any such DecimalFormat instances are effectively > non-functional as

Re: RFR: 8351074: Disallow null prefix and suffix in DecimalFormat [v2]

2025-03-03 Thread Justin Lu
> Please review this PR and associated CSR which disallows passing null to 4 > `DecimalFormat` prefix/suffix setter methods. > > Currently these setters do not check the input String for null. When the > prefix/suffix is null, any such DecimalFormat instances are effectively > non-functional as

RFR: 8351074: Disallow null prefix and suffix in DecimalFormat

2025-03-03 Thread Justin Lu
Please review this PR and associated CSR which disallows passing null to 4 `DecimalFormat` prefix/suffix setter methods. Currently these setters do not check the input String for null. When the prefix/suffix is null, any such DecimalFormat instances are effectively non-functional as it will thr