Jetty9 - Fixed typo.
This commit is contained in:
parent
bc0f9cd9e6
commit
a935c26764
|
@ -492,9 +492,9 @@ public abstract class SelectorManager extends AbstractLifeCycle implements Dumpa
|
||||||
{
|
{
|
||||||
EndPoint endPoint = newEndPoint(channel, this, selectionKey);
|
EndPoint endPoint = newEndPoint(channel, this, selectionKey);
|
||||||
endPointOpened(endPoint);
|
endPointOpened(endPoint);
|
||||||
Connection asyncConnection = newConnection(channel, endPoint, selectionKey.attachment());
|
Connection connection = newConnection(channel, endPoint, selectionKey.attachment());
|
||||||
endPoint.setConnection(asyncConnection);
|
endPoint.setConnection(connection);
|
||||||
connectionOpened(asyncConnection);
|
connectionOpened(connection);
|
||||||
LOG.debug("Created {}", endPoint);
|
LOG.debug("Created {}", endPoint);
|
||||||
return endPoint;
|
return endPoint;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue