From 6044fc9c38fd333ac921d277c6604e7bd87c83dc Mon Sep 17 00:00:00 2001 From: raccoonback Date: Sun, 2 Feb 2025 17:33:26 +0900 Subject: [PATCH] Http2ChannelDuplexHandler -> ChannelDuplexHandler Signed-off-by: raccoonback --- .../netty/http/client/Http2ConnectionLivenessHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactor-netty-http/src/main/java/reactor/netty/http/client/Http2ConnectionLivenessHandler.java b/reactor-netty-http/src/main/java/reactor/netty/http/client/Http2ConnectionLivenessHandler.java index e3dd9a5eb..5e198bb04 100644 --- a/reactor-netty-http/src/main/java/reactor/netty/http/client/Http2ConnectionLivenessHandler.java +++ b/reactor-netty-http/src/main/java/reactor/netty/http/client/Http2ConnectionLivenessHandler.java @@ -16,12 +16,12 @@ package reactor.netty.http.client; import io.netty.channel.Channel; +import io.netty.channel.ChannelDuplexHandler; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelPromise; import io.netty.handler.codec.http2.DefaultHttp2PingFrame; -import io.netty.handler.codec.http2.Http2ChannelDuplexHandler; import io.netty.handler.codec.http2.Http2ConnectionEncoder; import reactor.util.Logger; import reactor.util.Loggers; @@ -51,7 +51,7 @@ * @author raccoonback * @since 1.2.3 */ -public class Http2ConnectionLivenessHandler extends Http2ChannelDuplexHandler { +public class Http2ConnectionLivenessHandler extends ChannelDuplexHandler { private static final Logger log = Loggers.getLogger(Http2ConnectionLivenessHandler.class);