Fix a compilation error

This commit is contained in:
Trustin Lee 2012-05-25 09:43:28 -07:00
parent bc5e8b6be1
commit b06a4bea6b

View File

@ -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;
}