- 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
24 lines
777 B
Java
24 lines
777 B
Java
package com.google.android.gms.common.api;
|
|
|
|
import android.os.Looper;
|
|
import com.google.android.gms.common.api.Result;
|
|
import com.google.android.gms.common.api.internal.BasePendingResult;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class zaf<R extends Result> extends BasePendingResult<R> {
|
|
private final Result zae;
|
|
|
|
public zaf(Result result) {
|
|
super(Looper.getMainLooper());
|
|
this.zae = result;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.api.internal.BasePendingResult
|
|
public final R createFailedResult(Status status) {
|
|
if (status.getStatusCode() == this.zae.getStatus().getStatusCode()) {
|
|
return (R) this.zae;
|
|
}
|
|
throw new UnsupportedOperationException("Creating failed results is not supported");
|
|
}
|
|
}
|