diff src/org/eclipse/jetty/io/nio/ChannelEndPoint.java @ 965:866f2e801618

handle() returns void
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 14 Oct 2016 02:19:21 -0600
parents 3cd4c706a61f
children bdb6eb0fbf93
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/nio/ChannelEndPoint.java	Fri Oct 14 01:03:47 2016 -0600
+++ b/src/org/eclipse/jetty/io/nio/ChannelEndPoint.java	Fri Oct 14 02:19:21 2016 -0600
@@ -446,19 +446,16 @@
 		return _channel;
 	}
 
-	/* ------------------------------------------------------------ */
 	public void flush()
 		throws IOException
 	{
 	}
 
-	/* ------------------------------------------------------------ */
 	public int getMaxIdleTime()
 	{
 		return _maxIdleTime;
 	}
 
-	/* ------------------------------------------------------------ */
 	public void setMaxIdleTime(int timeMs) throws IOException
 	{
 		if (_socket!=null && timeMs!=_maxIdleTime)