File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
reactor-netty-http/src/main/java/reactor/netty/http/client Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 2828import reactor .util .annotation .Nullable ;
2929
3030import java .time .Duration ;
31- import java .util .Objects ;
3231import java .util .concurrent .ScheduledFuture ;
3332import java .util .concurrent .ThreadLocalRandom ;
3433
5150 * @author raccoonback
5251 * @since 1.2.3
5352 */
54- public class Http2ConnectionLivenessHandler extends ChannelDuplexHandler {
53+ final class Http2ConnectionLivenessHandler extends ChannelDuplexHandler {
5554
5655 private static final Logger log = Loggers .getLogger (Http2ConnectionLivenessHandler .class );
5756
@@ -65,7 +64,6 @@ public class Http2ConnectionLivenessHandler extends ChannelDuplexHandler {
6564 private boolean isPingAckPending ;
6665
6766 public Http2ConnectionLivenessHandler (Http2ConnectionEncoder encoder , @ Nullable Duration pingInterval ) {
68- Objects .requireNonNull (encoder , "encoder" );
6967 this .encoder = encoder ;
7068
7169 if (pingInterval != null ) {
You can’t perform that action at this time.
0 commit comments