Files
rr3-apk/decompiled-community/sources/com/google/android/gms/tasks/zze.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

47 lines
1.4 KiB
Java

package com.google.android.gms.tasks;
import java.util.concurrent.Executor;
/* loaded from: classes3.dex */
final class zze implements Runnable {
final /* synthetic */ Task zza;
final /* synthetic */ zzf zzb;
public zze(zzf zzfVar, Task task) {
this.zzb = zzfVar;
this.zza = task;
}
@Override // java.lang.Runnable
public final void run() {
zzw zzwVar;
zzw zzwVar2;
zzw zzwVar3;
Continuation continuation;
try {
continuation = this.zzb.zzb;
Task task = (Task) continuation.then(this.zza);
if (task == null) {
this.zzb.onFailure(new NullPointerException("Continuation returned null"));
return;
}
zzf zzfVar = this.zzb;
Executor executor = TaskExecutors.zza;
task.addOnSuccessListener(executor, zzfVar);
task.addOnFailureListener(executor, this.zzb);
task.addOnCanceledListener(executor, this.zzb);
} catch (RuntimeExecutionException e) {
if (e.getCause() instanceof Exception) {
zzwVar3 = this.zzb.zzc;
zzwVar3.zza((Exception) e.getCause());
} else {
zzwVar2 = this.zzb.zzc;
zzwVar2.zza(e);
}
} catch (Exception e2) {
zzwVar = this.zzb.zzc;
zzwVar.zza(e2);
}
}
}