On Thu, 27 Aug 2026 17:14:34 GMT, Alan Bateman <[email protected]> wrote:
>> Markus KARG has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Simplified approach by Alan Bateman
>
> src/java.base/share/classes/sun/nio/cs/StreamDecoder.java line 198:
>
>> 196: private static CharBuffer ensureFree(CharBuffer cb, int minFree) {
>> 197: return cb.remaining() < minFree ?
>> CharBuffer.allocate(cb.position() + minFree).put(cb.flip()) : cb;
>> 198: }
>
> I assume this is not needed now.
Thank you. Indeed I forgot to remove this leftover when dropping slow path. Fix
now.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/32264#discussion_r3881652652