Mercurial Hosting > luan
diff src/org/eclipse/jetty/server/nio/SelectChannelConnector.java @ 952:669769bcdf5c
simplify AsyncEndPoint
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 12 Oct 2016 19:47:45 -0600 |
parents | a778413aefc0 |
children | a021c4c9c244 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Wed Oct 12 18:12:12 2016 -0600 +++ b/src/org/eclipse/jetty/server/nio/SelectChannelConnector.java Wed Oct 12 19:47:45 2016 -0600 @@ -123,7 +123,7 @@ super.doStart(); } - protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint) + protected AsyncConnection newConnection(SocketChannel channel,AsyncEndPoint endpoint) { return new AsyncHttpConnection(SelectChannelConnector.this,endpoint,server); } @@ -138,7 +138,7 @@ } @Override - public AsyncConnection newConnection(SocketChannel channel,AsyncEndPoint endpoint, Object attachment) + public AsyncConnection newConnection(SocketChannel channel,SelectChannelEndPoint endpoint, Object attachment) { return SelectChannelConnector.this.newConnection(channel,endpoint); }