Re: RFR: 8339169: Remove NaiveHuffman coder

2024-08-29 Thread Daniel Fuchs
On Thu, 29 Aug 2024 10:21:45 GMT, Aleksei Efimov wrote: > `jdk.internal.net.http.hpack.NaiveHuffman` is an internal class and not used > in `java.net.http` module or any test. > It is proposed to remove this class. > `HttpClient` will continue to use the > `jdk.internal.net.http.hpack.Quick

Re: RFR: 8339169: Remove NaiveHuffman coder

2024-08-29 Thread Daniel Jeliński
On Thu, 29 Aug 2024 10:21:45 GMT, Aleksei Efimov wrote: > `jdk.internal.net.http.hpack.NaiveHuffman` is an internal class and not used > in `java.net.http` module or any test. > It is proposed to remove this class. > `HttpClient` will continue to use the > `jdk.internal.net.http.hpack.Quick

RFR: 8339169: Remove NaiveHuffman coder

2024-08-29 Thread Aleksei Efimov
`jdk.internal.net.http.hpack.NaiveHuffman` is an internal class and not used in `java.net.http` module or any test. It is proposed to remove this class. `HttpClient` will continue to use the `jdk.internal.net.http.hpack.QuickHuffman` to encode/decode string literals. - Commit me