Fix a compilation error
This commit is contained in:
parent
d794ea515b
commit
9b4481b59a
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user