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,51 @@
package com.google.android.gms.internal.ads;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executor;
import java.util.concurrent.RejectedExecutionException;
/* loaded from: classes3.dex */
abstract class zzgbt extends zzgcp {
private final Executor zza;
final /* synthetic */ zzgbu zzb;
public zzgbt(zzgbu zzgbuVar, Executor executor) {
this.zzb = zzgbuVar;
executor.getClass();
this.zza = executor;
}
public abstract void zzc(Object obj);
@Override // com.google.android.gms.internal.ads.zzgcp
public final void zzd(Throwable th) {
this.zzb.zza = null;
if (th instanceof ExecutionException) {
this.zzb.zzd(((ExecutionException) th).getCause());
} else if (th instanceof CancellationException) {
this.zzb.cancel(false);
} else {
this.zzb.zzd(th);
}
}
@Override // com.google.android.gms.internal.ads.zzgcp
public final void zze(Object obj) {
this.zzb.zza = null;
zzc(obj);
}
public final void zzf() {
try {
this.zza.execute(this);
} catch (RejectedExecutionException e) {
this.zzb.zzd(e);
}
}
@Override // com.google.android.gms.internal.ads.zzgcp
public final boolean zzg() {
return this.zzb.isDone();
}
}