Issue #3361 thread safe addHandler

Updates from review:
 - private fields

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2019-03-21 10:27:09 +11:00
parent 790dbbfaaa
commit 265afacd3f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ import org.eclipse.jetty.util.log.Log;
*/
public class SerializedExecutor implements Executor
{
final AtomicReference<Link> _last = new AtomicReference<>();
private final AtomicReference<Link> _last = new AtomicReference<>();
@Override
public void execute(Runnable task)