Fix a compilation error
This commit is contained in:
parent
bc5e8b6be1
commit
b06a4bea6b
@ -126,7 +126,12 @@ class EmbeddedChannel extends AbstractChannel {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int doRead(ChannelBufferHolder<Object> buf) throws Exception {
|
||||
protected int doRead(ChannelBuffer buf) throws Exception {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int doRead(Queue<Object> buf) throws Exception {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user