From 9d417c1626ecc95abda14d2a48fc54edb26e302e Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Wed, 12 Aug 2015 14:25:45 +0200 Subject: [PATCH] Fixing compile error, introduce by 5d011b88958f867e99a94bdfae334dfb8ce1697c --- .../test/java/io/netty/channel/pool/FixedChannelPoolTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java b/transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java index a3e12ec7ba..78353d1775 100644 --- a/transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java +++ b/transport/src/test/java/io/netty/channel/pool/FixedChannelPoolTest.java @@ -20,6 +20,7 @@ import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.Channel; import io.netty.channel.ChannelInboundHandlerAdapter; import io.netty.channel.ChannelInitializer; +import io.netty.channel.DefaultEventLoopGroup; import io.netty.channel.EventLoopGroup; import io.netty.channel.local.LocalAddress; import io.netty.channel.local.LocalChannel; @@ -170,7 +171,7 @@ public class FixedChannelPoolTest { .childHandler(new ChannelInitializer() { @Override public void initChannel(LocalChannel ch) throws Exception { - ch.pipeline().addLast(new ChannelHandlerAdapter()); + ch.pipeline().addLast(new ChannelInboundHandlerAdapter()); } });