package androidx.work.impl.utils.futures; import androidx.annotation.Nullable; import androidx.annotation.RestrictTo; import com.google.common.util.concurrent.ListenableFuture; @RestrictTo({RestrictTo.Scope.LIBRARY_GROUP}) /* loaded from: classes.dex */ public final class SettableFuture extends AbstractFuture { public static SettableFuture create() { return new SettableFuture<>(); } @Override // androidx.work.impl.utils.futures.AbstractFuture public boolean set(@Nullable V v) { return super.set(v); } @Override // androidx.work.impl.utils.futures.AbstractFuture public boolean setException(Throwable th) { return super.setException(th); } @Override // androidx.work.impl.utils.futures.AbstractFuture public boolean setFuture(ListenableFuture listenableFuture) { return super.setFuture(listenableFuture); } private SettableFuture() { } }