Skip to content

Commit 6044fc9

Browse files
committed
Http2ChannelDuplexHandler -> ChannelDuplexHandler
Signed-off-by: raccoonback <[email protected]>
1 parent e630308 commit 6044fc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reactor-netty-http/src/main/java/reactor/netty/http/client/Http2ConnectionLivenessHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
package reactor.netty.http.client;
1717

1818
import io.netty.channel.Channel;
19+
import io.netty.channel.ChannelDuplexHandler;
1920
import io.netty.channel.ChannelFuture;
2021
import io.netty.channel.ChannelFutureListener;
2122
import io.netty.channel.ChannelHandlerContext;
2223
import io.netty.channel.ChannelPromise;
2324
import io.netty.handler.codec.http2.DefaultHttp2PingFrame;
24-
import io.netty.handler.codec.http2.Http2ChannelDuplexHandler;
2525
import io.netty.handler.codec.http2.Http2ConnectionEncoder;
2626
import reactor.util.Logger;
2727
import reactor.util.Loggers;
@@ -51,7 +51,7 @@
5151
* @author raccoonback
5252
* @since 1.2.3
5353
*/
54-
public class Http2ConnectionLivenessHandler extends Http2ChannelDuplexHandler {
54+
public class Http2ConnectionLivenessHandler extends ChannelDuplexHandler {
5555

5656
private static final Logger log = Loggers.getLogger(Http2ConnectionLivenessHandler.class);
5757

0 commit comments

Comments
 (0)