removed debug

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3051 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2011-05-02 01:41:16 +00:00
parent a8e35c0c4b
commit f7ca15c499
1 changed files with 0 additions and 5 deletions

View File

@ -69,10 +69,6 @@ public class NestedJettyServlet implements Servlet
else
_connector=(NestedConnector)_server.getConnectors()[0];
SocketConnector socket = new SocketConnector();
socket.setPort(0);
_server.addConnector(socket);
WebAppContext webapp = new WebAppContext();
webapp.setContextPath(_context.getContextPath());
@ -89,7 +85,6 @@ public class NestedJettyServlet implements Servlet
_server.start();
_context.log("Started Jetty/"+_server.getVersion()+" for "+webapp.getWar()+" nested in "+_context.getServerInfo());
webapp.setAttribute("socket",socket.toString());
}
catch(Exception e)
{