netty5/codec-http2
Idel Pivnitskiy d2643ed835 Decrease visibility of Http2FrameCodecBuilder default ctor to protected (#11220)
Motivation:

`Http2FrameCodecBuilder` defines static factory methods `forClient()`
and `forServer()` that should be used to create a new instance.
The default ctor is useful only when users need to override behavior
of the existing builder. Those users should define another way to create
an instance.

Modifications:

- Decrease visibility of `Http2FrameCodecBuilder` default ctor from
`public` to `protected`;
- Add javadoc to clarity responsibilities;

Result:

Users of `Http2FrameCodecBuilder` are not confused why
`new Http2FrameCodecBuilder().build()` works for the server-side, but
does not work for the client-side.
2021-05-04 07:37:47 +02:00
..
src Decrease visibility of Http2FrameCodecBuilder default ctor to protected (#11220) 2021-05-04 07:37:47 +02:00
pom.xml Propagate SSLException to the Http2StreamChannels (#11023) 2021-02-19 08:41:55 +01:00