Tighten up visibility

This commit is contained in:
Norman Maurer 2013-02-11 07:29:13 +01:00
parent 9228c97546
commit df53d6d7c5

View File

@ -58,7 +58,7 @@ public abstract class ChannelInitializer<C extends Channel> extends ChannelState
* @param ch the {@link Channel} which was registered.
* @throws Exception is thrown if an error accours. In that case the {@link Channel} will be closed.
*/
public abstract void initChannel(C ch) throws Exception;
protected abstract void initChannel(C ch) throws Exception;
@SuppressWarnings("unchecked")
@Override