> I mainly made these optimizations:
>
> * Avoid allocating `StringBuilder` when there are no characters in the URL
> that need to be encoded;
> * Implement a fast path for UTF-8.
>
> In addition to improving performance, these optimizations also reduce
> temporary objects:
>
> * It no longer
On Tue, 5 Sep 2023 22:49:41 GMT, Erik Joelsson wrote:
> There are a number of files in the `test` directory that have an incorrect
> copyright header, which includes the "classpath" exception text. This patch
> removes that text from all test files that I could find it in. I did this
> using a
> I mainly made these optimizations:
>
> * Avoid allocating `StringBuilder` when there are no characters in the URL
> that need to be encoded;
> * Implement a fast path for UTF-8.
>
> In addition to improving performance, these optimizations also reduce
> temporary objects:
>
> * It no longer
On Tue, 5 Sep 2023 22:49:41 GMT, Erik Joelsson wrote:
> There are a number of files in the `test` directory that have an incorrect
> copyright header, which includes the "classpath" exception text. This patch
> removes that text from all test files that I could find it in. I did this
> using a
On Tue, 5 Sep 2023 22:49:41 GMT, Erik Joelsson wrote:
> There are a number of files in the `test` directory that have an incorrect
> copyright header, which includes the "classpath" exception text. This patch
> removes that text from all test files that I could find it in. I did this
> using a
There are a number of files in the `test` directory that have an incorrect
copyright header, which includes the "classpath" exception text. This patch
removes that text from all test files that I could find it in. I did this using
a combination of `sed` and `grep`. Reviewing this patch is probab
On Tue, 4 Apr 2023 19:46:32 GMT, Jonathan Gibbons wrote:
> Please review a doc update to add `@spec` into the rest of the files in
> `java.base` (compared to those in
> [JDK-8305206](https://bugs.openjdk.org/browse/JDK-8305206) PR #13248)
This pull request has been closed without being integra
On Thu, 24 Aug 2023 10:38:57 GMT, Glavo wrote:
>> I mainly made these optimizations:
>>
>> * Avoid allocating `StringBuilder` when there are no characters in the URL
>> that need to be encoded;
>> * Implement a fast path for UTF-8.
>>
>> In addition to improving performance, these optimization
On Sun, 6 Aug 2023 13:47:41 GMT, Andrey Turbanov wrote:
>> DatagramSocket delegates to an inner DatagramSocket object. Irrespective of
>> whether datagramSocket is IPv4 or IPv6, we create an IPv6 datagramChannel as
>> its's delegate. So, This can cause problems with operations like joinGroup.