On Wed, 14 Jul 2021 20:52:54 GMT, Naoto Sato <[email protected]> wrote:
>> src/java.base/share/classes/java/io/Console.java line 587:
>>
>>> 585: try {
>>> 586: cs = Charset.forName(csname);
>>> 587: } catch (Exception ignored) { }
>>
>> A separate enhancement...
>> I've long thought that should be a way to avoid the exception here.
>> For example, a Charset.forName(csname, default);
>> The caller might have a default in mind or supply null and then be able to
>> test for null.
>
> Agreed. Will file an RFE for this.
https://bugs.openjdk.java.net/browse/JDK-8270490
-------------
PR: https://git.openjdk.java.net/jdk/pull/4733