[#4347] Remove not needed write operation from example.
Motivation: The proxy example contains some code that is not needed. This can confuse the reader. Modifications: Remove the not needed ctx.write(...). Result: Less confusing code.
This commit is contained in:
parent
b58036aeea
commit
6ebf4d1f5b
@ -15,7 +15,6 @@
|
|||||||
*/
|
*/
|
||||||
package io.netty.example.proxy;
|
package io.netty.example.proxy;
|
||||||
|
|
||||||
import io.netty.buffer.Unpooled;
|
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelFuture;
|
import io.netty.channel.ChannelFuture;
|
||||||
import io.netty.channel.ChannelFutureListener;
|
import io.netty.channel.ChannelFutureListener;
|
||||||
@ -33,7 +32,6 @@ public class HexDumpProxyBackendHandler extends ChannelInboundHandlerAdapter {
|
|||||||
@Override
|
@Override
|
||||||
public void channelActive(ChannelHandlerContext ctx) {
|
public void channelActive(ChannelHandlerContext ctx) {
|
||||||
ctx.read();
|
ctx.read();
|
||||||
ctx.write(Unpooled.EMPTY_BUFFER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user