Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
package com.google.android.gms.tasks;
import java.util.concurrent.Executor;
/* JADX INFO: Access modifiers changed from: package-private */
/* loaded from: classes3.dex */
public final class zzl implements zzq {
private final Executor zza;
private final Object zzb = new Object();
private OnFailureListener zzc;
public zzl(Executor executor, OnFailureListener onFailureListener) {
this.zza = executor;
this.zzc = onFailureListener;
}
@Override // com.google.android.gms.tasks.zzq
public final void zzc() {
synchronized (this.zzb) {
this.zzc = null;
}
}
@Override // com.google.android.gms.tasks.zzq
public final void zzd(Task task) {
if (task.isSuccessful() || task.isCanceled()) {
return;
}
synchronized (this.zzb) {
try {
if (this.zzc == null) {
return;
}
this.zza.execute(new zzk(this, task));
} catch (Throwable th) {
throw th;
}
}
}
}