Fix compile error

This commit is contained in:
Norman Maurer 2014-04-30 15:58:33 +02:00
parent 8599ab5bdb
commit 3508960781

View File

@ -110,7 +110,7 @@ public class SocketSslGreetingTest extends AbstractSocketTest {
final CountDownLatch latch = new CountDownLatch(1); final CountDownLatch latch = new CountDownLatch(1);
@Override @Override
public void channelRead0(ChannelHandlerContext ctx, ByteBuf buf) throws Exception { public void messageReceived(ChannelHandlerContext ctx, ByteBuf buf) throws Exception {
assertEquals(greeting, buf); assertEquals(greeting, buf);
latch.countDown(); latch.countDown();
ctx.close(); ctx.close();
@ -128,12 +128,12 @@ public class SocketSslGreetingTest extends AbstractSocketTest {
} }
} }
private class ServerHandler extends SimpleChannelInboundHandler<String> { private class ServerHandler extends SimpleChannelInboundHandler<ByteBuf> {
volatile Channel channel; volatile Channel channel;
final AtomicReference<Throwable> exception = new AtomicReference<Throwable>(); final AtomicReference<Throwable> exception = new AtomicReference<Throwable>();
@Override @Override
protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception { protected void messageReceived(ChannelHandlerContext ctx, ByteBuf msg) throws Exception {
// discard // discard
} }