Re: RFR: 8273059: Redundant Math.min call in Http2ClientImpl#getConnectionWindowSize [v3]

2021-08-30 Thread Daniel Fuchs
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

Integrated: 8273059: Redundant Math.min call in Http2ClientImpl#getConnectionWindowSize

2021-08-30 Thread Michael McMahon
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

Integrated: 8260265: UTF-8 by Default

2021-08-30 Thread Naoto Sato
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

Re: RFR: 8272805: Avoid looking up standard charsets [v3]

2021-08-30 Thread Sergey Bylokhov
> 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