From 32dda06da35e3df0e1667133cf9b2b3a12ea74bc Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Wed, 11 Jan 2012 20:19:01 +0900 Subject: [PATCH] Fix a compilation error --- example/src/main/java/io/netty/example/proxy/HexDumpProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/src/main/java/io/netty/example/proxy/HexDumpProxy.java b/example/src/main/java/io/netty/example/proxy/HexDumpProxy.java index d09a999ffb..855bbc4d36 100644 --- a/example/src/main/java/io/netty/example/proxy/HexDumpProxy.java +++ b/example/src/main/java/io/netty/example/proxy/HexDumpProxy.java @@ -42,7 +42,7 @@ public class HexDumpProxy { String remoteHost = args[1]; int remotePort = Integer.parseInt(args[2]); - run(localPort, remoteHost, remotePort); + new HexDumpProxy(localPort, remoteHost, remotePort).run(); } private final int localPort;