Make ByteToMessageCodec.isEncodable() public like other similar methods

This commit is contained in:
Trustin Lee 2013-01-09 14:28:42 +09:00
parent aa69d628f1
commit 8d5fd0839f

View File

@ -80,7 +80,7 @@ public abstract class ByteToMessageCodec<INBOUND_OUT, OUTBOUND_IN>
encoder.freeOutboundBuffer(ctx);
}
protected boolean isEncodable(Object msg) throws Exception {
public boolean isEncodable(Object msg) throws Exception {
return encoder.isEncodable(msg);
}