Remove unnecessary 'return's / Clean up QueryStringDecoder

This commit is contained in:
Trustin Lee 2012-11-12 09:15:33 +09:00
parent 91a61d7f43
commit 361703b319

View File

@ -46,7 +46,5 @@ public class HttpUploadServerInitializer extends ChannelInitializer<SocketChanne
pipeline.addLast("deflater", new HttpContentCompressor());
pipeline.addLast("handler", new HttpUploadServerHandler());
return;
}
}