Fixing compile error, introduce by 5d011b8895

This commit is contained in:
Norman Maurer 2015-08-12 14:25:45 +02:00
parent 5d011b8895
commit 9d417c1626

View File

@ -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<LocalChannel>() {
@Override
public void initChannel(LocalChannel ch) throws Exception {
ch.pipeline().addLast(new ChannelHandlerAdapter());
ch.pipeline().addLast(new ChannelInboundHandlerAdapter());
}
});