- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
32 lines
945 B
Java
32 lines
945 B
Java
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<V> extends AbstractFuture<V> {
|
|
public static <V> SettableFuture<V> 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() {
|
|
}
|
|
}
|