Format tweak

This commit is contained in:
Gary Gregory 2023-10-14 10:21:35 -04:00
parent 653f389322
commit 186478cde7
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ import java.util.concurrent.atomic.AtomicReference;
public abstract class AtomicInitializer<T> extends AbstractConcurrentInitializer<T, RuntimeException> {
private static final Object NO_INIT = new Object();
/** Holds the reference to the managed object. */
private final AtomicReference<T> reference = new AtomicReference<>((T) NO_INIT);