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) {
|
private static void safeClose(EmbeddedChannel ch) {
|
||||||
ch.finish();
|
ch.finish();
|
||||||
for (;;) {
|
for (;;) {
|
||||||
ByteBuf m = ch.readOutbound();
|
ByteBuf m = (ByteBuf) ch.readOutbound();
|
||||||
if (m == null) {
|
if (m == null) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user