Files
rr3-apk/decompiled/sources/com/google/android/gms/tasks/zze.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -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);
}
}
}