Skip to content

Commit

Permalink
Http2ChannelDuplexHandler -> ChannelDuplexHandler
Browse files Browse the repository at this point in the history
Signed-off-by: raccoonback <[email protected]>
  • Loading branch information
raccoonback committed Feb 2, 2025
1 parent e630308 commit 6044fc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 6044fc9

Please sign in to comment.