Format tweak

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

View File

@ -54,6 +54,7 @@ import java.util.concurrent.atomic.AtomicReference;
public abstract class AtomicSafeInitializer<T> extends AbstractConcurrentInitializer<T, RuntimeException> {
private static final Object NO_INIT = new Object();
/** A guard which ensures that initialize() is called only once. */
private final AtomicReference<AtomicSafeInitializer<T>> factory =
new AtomicReference<>();