Fixed usage of volatile reference.

This commit is contained in:
Simone Bordet 2016-02-18 12:38:47 +01:00
parent 55817a212f
commit 519734bec4
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public abstract class AbstractEndPoint extends IdleTimeout implements EndPoint
protected void onIdleExpired(TimeoutException timeout)
{
Connection connection = _connection;
if (connection != null && !_connection.onIdleExpired())
if (connection != null && !connection.onIdleExpired())
return;
boolean output_shutdown=isOutputShutdown();