diff src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 959:7b94f5b33c64

remove onClose()
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 13 Oct 2016 18:53:26 -0600
parents 1094975d013b
children 3cd4c706a61f
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/AbstractHttpConnection.java	Thu Oct 13 18:48:20 2016 -0600
+++ b/src/org/eclipse/jetty/server/AbstractHttpConnection.java	Thu Oct 13 18:53:26 2016 -0600
@@ -613,7 +613,6 @@
 			_out.reopen();
 	}
 
-	/* ------------------------------------------------------------ */
 	public boolean isIdle()
 	{
 		return _generator.isIdle() && (_parser.isIdle() || _delayedHandling);
@@ -628,25 +627,16 @@
 		return false;
 	}
 
-	/* ------------------------------------------------------------ */
-	public void onClose()
-	{
-		LOG.debug("closed {}",this);
-	}
-
-	/* ------------------------------------------------------------ */
 	public boolean isExpecting100Continues()
 	{
 		return _expect100Continue;
 	}
 
-	/* ------------------------------------------------------------ */
 	public boolean isExpecting102Processing()
 	{
 		return _expect102Processing;
 	}
 
-	/* ------------------------------------------------------------ */
 	public int getMaxIdleTime()
 	{
 		if (_connector.isLowResources() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime())
@@ -656,7 +646,6 @@
 		return _connector.getMaxIdleTime();
 	}
 
-	/* ------------------------------------------------------------ */
 	public String toString()
 	{
 		return String.format("%s,g=%s,p=%s,r=%d",