Removing @Override annotations.

This commit is contained in:
Daniel Bevenius 2012-09-11 12:15:08 +02:00
parent 7c79d6f7b1
commit aca94691da

View File

@ -55,7 +55,6 @@ public class WebSocketServerProtocolHandler extends SimpleChannelUpstreamHandler
this.allowExtensions = allowExtensions; this.allowExtensions = allowExtensions;
} }
@Override
public void afterAdd(ChannelHandlerContext ctx) throws Exception { public void afterAdd(ChannelHandlerContext ctx) throws Exception {
ChannelPipeline cp = ctx.getPipeline(); ChannelPipeline cp = ctx.getPipeline();
if (cp.get(WebSocketServerProtocolHandshakeHandler.class) == null) { if (cp.get(WebSocketServerProtocolHandshakeHandler.class) == null) {
@ -102,7 +101,6 @@ public class WebSocketServerProtocolHandler extends SimpleChannelUpstreamHandler
static ChannelHandler forbiddenHttpRequestResponder() { static ChannelHandler forbiddenHttpRequestResponder() {
return new SimpleChannelHandler() { return new SimpleChannelHandler() {
@Override
public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) throws Exception { public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) throws Exception {
if (!(e.getMessage() instanceof WebSocketFrame)) { if (!(e.getMessage() instanceof WebSocketFrame)) {
DefaultHttpResponse response = new DefaultHttpResponse(HTTP_1_1, HttpResponseStatus.FORBIDDEN); DefaultHttpResponse response = new DefaultHttpResponse(HTTP_1_1, HttpResponseStatus.FORBIDDEN);
@ -114,16 +112,13 @@ public class WebSocketServerProtocolHandler extends SimpleChannelUpstreamHandler
}; };
} }
@Override
public void beforeAdd(ChannelHandlerContext ctx) throws Exception { public void beforeAdd(ChannelHandlerContext ctx) throws Exception {
} }
@Override
public void beforeRemove(ChannelHandlerContext ctx) throws Exception { public void beforeRemove(ChannelHandlerContext ctx) throws Exception {
} }
@Override
public void afterRemove(ChannelHandlerContext ctx) throws Exception { public void afterRemove(ChannelHandlerContext ctx) throws Exception {
} }