Issue #3361 thread safe addHandler
Updates from review: - private fields Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
790dbbfaaa
commit
265afacd3f
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue