Make the default constructor of CombinedChannelHandler protected

This commit is contained in:
Trustin Lee 2012-05-20 20:57:00 +09:00
parent 83f1b5fa35
commit baa3388859

View File

@ -8,7 +8,7 @@ public class CombinedChannelHandler implements ChannelInboundHandler<Object>,
private ChannelOutboundHandler<Object> out;
private ChannelInboundHandler<Object> in;
public CombinedChannelHandler() {
protected CombinedChannelHandler() {
// User will call init in the subclass constructor.
}