Fixed usage of volatile reference.
This commit is contained in:
parent
55817a212f
commit
519734bec4
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue