Jetty9 - Fixed typo.

This commit is contained in:
Simone Bordet 2012-08-27 16:32:01 +02:00
parent bc0f9cd9e6
commit a935c26764
1 changed files with 3 additions and 3 deletions

View File

@ -492,9 +492,9 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
{
EndPoint endPoint = newEndPoint(channel, this, selectionKey);
endPointOpened(endPoint);
Connection asyncConnection = newConnection(channel, endPoint, selectionKey.attachment());
endPoint.setConnection(asyncConnection);
connectionOpened(asyncConnection);
Connection connection = newConnection(channel, endPoint, selectionKey.attachment());
endPoint.setConnection(connection);
connectionOpened(connection);
LOG.debug("Created {}", endPoint);
return endPoint;
}