330732 removed excess debugging

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2545 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-11-20 22:46:23 +00:00
parent 1ab88841c8
commit 4d6df56c12
3 changed files with 1 additions and 4 deletions

View File

@ -7,6 +7,7 @@ jetty-7.2.2-SNAPSHOT
+ 330417 Atomic PUT in PutFilter
+ 330419 Reloading webapp duplicates StandardDescriptorProcessor
+ 330686 OSGi: Make org.eclipse.jetty.jsp-2.1 a fragment of org.apache.jasper.glassfish
+ 330732 Removed System.err debugging
jetty-7.2.1.v20101111 11 November 2010
+ 324679 Fixed dedection of write before static content

View File

@ -61,9 +61,6 @@ public class Ajp13SocketConnector extends SocketConnector
super.customize(endpoint,request);
if (request.isSecure())
request.setScheme(HttpSchemes.HTTPS);
System.err.println("Customize "+endpoint+" "+request);
}
/* ------------------------------------------------------------ */

View File

@ -197,7 +197,6 @@ public class BlockingChannelConnector extends AbstractNIOConnector
{
if (_idleTimestamp!=0 && _timeout>0 && now>(_idleTimestamp+_timeout))
{
System.err.println("IDLE "+this);
idleExpired();
}
}