On Fri, 27 Aug 2021 16:11:49 GMT, Michael McMahon wrote:
>> Hi,
>>
>> Could I get the following trivial change reviewed please?
>> It removes a redundant call to Math.min(Integer.MAX_VALUE, )
>>
>> Thanks,
>> Michael.
>
> Michael McMahon has updated the pull request incrementally with one
On Fri, 27 Aug 2021 12:01:25 GMT, Michael McMahon wrote:
> Hi,
>
> Could I get the following trivial change reviewed please?
> It removes a redundant call to Math.min(Integer.MAX_VALUE, )
>
> Thanks,
> Michael.
This pull request has now been integrated.
Changeset: 16e83058
Author:Mich
On Thu, 8 Jul 2021 21:23:00 GMT, Naoto Sato wrote:
> This is an implementation for the `JEP 400: UTF-8 by Default`. The gist of
> the changes is `Charset.defaultCharset()` returning `UTF-8` and
> `file.encoding` system property being added in the spec, but another notable
> modification is in
> This is the continuation of JDK-8233884, JDK-8271456, and JDK-8272120.
>
> In many places standard charsets are looked up via their names, for example:
> absolutePath.getBytes("UTF-8");
>
> This could be done more efficiently(up to x20 time faster) with use of
> java.nio.charset.StandardCharse