diff src/org/eclipse/jetty/server/Server.java @ 913:17f4fe8271de

simplify connectors
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 08 Oct 2016 23:57:11 -0600
parents 1d0c304e12b5
children 3191abe890ef
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/Server.java	Sat Oct 08 22:05:14 2016 -0600
+++ b/src/org/eclipse/jetty/server/Server.java	Sat Oct 08 23:57:11 2016 -0600
@@ -76,7 +76,6 @@
 		new SelectChannelConnector(this,port);
 	}
 
-	/* ------------------------------------------------------------ */
 	@Override
 	protected void doStart() throws Exception
 	{
@@ -105,7 +104,6 @@
 		mex.ifExceptionThrow();
 	}
 
-	/* ------------------------------------------------------------ */
 	@Override
 	protected void doStop() throws Exception
 	{
@@ -201,7 +199,6 @@
 	}
 
 
-	/* ------------------------------------------------------------ */
 	public void join() throws InterruptedException
 	{
 		threadPool.awaitTermination(Long.MAX_VALUE, TimeUnit.MILLISECONDS);
@@ -259,7 +256,6 @@
 		return this.getClass().getName()+"@"+Integer.toHexString(hashCode());
 	}
 
-	/* ------------------------------------------------------------ */
 	@Override
 	public void dump(Appendable out,String indent) throws IOException
 	{
@@ -287,7 +283,6 @@
 	}
 
 
-	/* ------------------------------------------------------------ */
 	public static void main(String...args) throws Exception
 	{
 		System.err.println(version);