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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
package com.google.android.gms.tasks;
import java.util.concurrent.CancellationException;
import java.util.concurrent.Executor;
/* loaded from: classes3.dex */
final class zzo implements Runnable {
final /* synthetic */ Task zza;
final /* synthetic */ zzp zzb;
public zzo(zzp zzpVar, Task task) {
this.zzb = zzpVar;
this.zza = task;
}
@Override // java.lang.Runnable
public final void run() {
SuccessContinuation successContinuation;
try {
successContinuation = this.zzb.zzb;
Task then = successContinuation.then(this.zza.getResult());
if (then == null) {
this.zzb.onFailure(new NullPointerException("Continuation returned null"));
return;
}
zzp zzpVar = this.zzb;
Executor executor = TaskExecutors.zza;
then.addOnSuccessListener(executor, zzpVar);
then.addOnFailureListener(executor, this.zzb);
then.addOnCanceledListener(executor, this.zzb);
} catch (RuntimeExecutionException e) {
if (e.getCause() instanceof Exception) {
this.zzb.onFailure((Exception) e.getCause());
} else {
this.zzb.onFailure(e);
}
} catch (CancellationException unused) {
this.zzb.onCanceled();
} catch (Exception e2) {
this.zzb.onFailure(e2);
}
}
}