Fix a compilation error

This commit is contained in:
Trustin Lee 2014-10-25 17:13:57 +09:00
parent d794ea515b
commit 9b4481b59a

View File

@ -346,7 +346,7 @@ public class ChannelOutboundBufferTest {
private static void safeClose(EmbeddedChannel ch) {
ch.finish();
for (;;) {
ByteBuf m = ch.readOutbound();
ByteBuf m = (ByteBuf) ch.readOutbound();
if (m == null) {
break;
}