package w1;
import java.util.concurrent.atomic.AtomicReference;
public abstract /* synthetic */ class X {
public static /* synthetic */ boolean a(AtomicReference atomicReference, Object obj, Object obj2) {
while (!atomicReference.compareAndSet(obj, obj2)) {
if (atomicReference.get() != obj) {
return false;
}
}
return true;
}
}
Download file