comparison src/org/eclipse/jetty/server/nio/SelectChannelConnector.java @ 903:94f5d8a62385

remove connectionClosed()
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 07 Oct 2016 00:23:00 -0600
parents 769040d68b0a
children eaf271fb747f
comparison
equal deleted inserted replaced
902:769040d68b0a 903:94f5d8a62385
266 } 266 }
267 267
268 /* ------------------------------------------------------------------------------- */ 268 /* ------------------------------------------------------------------------------- */
269 protected void endPointClosed(SelectChannelEndPoint endpoint) 269 protected void endPointClosed(SelectChannelEndPoint endpoint)
270 { 270 {
271 connectionClosed(endpoint.getConnection()); 271 endpoint.getConnection().onClose();
272 } 272 }
273 273
274 /* ------------------------------------------------------------------------------- */ 274 /* ------------------------------------------------------------------------------- */
275 protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint) 275 protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint)
276 { 276 {