comparison src/org/eclipse/jetty/server/Server.java @ 1001:39154cfa58e4

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 22 Oct 2016 20:56:41 -0600
parents 32d4b569567c
children 3fa54d9d19cd
comparison
equal deleted inserted replaced
1000:32d4b569567c 1001:39154cfa58e4
67 } 67 }
68 68
69 public Server(int port) 69 public Server(int port)
70 { 70 {
71 setServer(this); 71 setServer(this);
72 // new SelectChannelConnector(this,port); 72 new SelectChannelConnector(this,port);
73 new BlockingChannelConnector(this,port); 73 // new BlockingChannelConnector(this,port);
74 } 74 }
75 75
76 @Override 76 @Override
77 protected void doStart() throws Exception 77 protected void doStart() throws Exception
78 { 78 {