Make sure we call super.

This commit is contained in:
norman 2012-06-06 11:47:44 +02:00
parent 4f81776e06
commit fc2049b5c7

View File

@ -1227,19 +1227,10 @@ public class SslHandler extends FrameDecoder
@Override @Override
public void beforeAdd(ChannelHandlerContext ctx) throws Exception { public void beforeAdd(ChannelHandlerContext ctx) throws Exception {
super.beforeAdd(ctx);
this.ctx = ctx; this.ctx = ctx;
} }
@Override
public void afterAdd(ChannelHandlerContext ctx) throws Exception {
// Unused
}
@Override
public void beforeRemove(ChannelHandlerContext ctx) throws Exception {
// Unused
}
/** /**
* Fail all pending writes which we were not able to flush out * Fail all pending writes which we were not able to flush out
*/ */