35 lines
1.2 KiB
Java
35 lines
1.2 KiB
Java
package com.google.android.gms.tasks;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-tasks@@18.1.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
final class zze implements Runnable {
|
|
final /* synthetic */ Task zza;
|
|
final /* synthetic */ zzf zzb;
|
|
|
|
zze(zzf zzfVar, Task task) {
|
|
this.zzb = zzfVar;
|
|
this.zza = task;
|
|
}
|
|
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
try {
|
|
Task task = (Task) this.zzb.zzb.then(this.zza);
|
|
if (task == null) {
|
|
this.zzb.onFailure(new NullPointerException("Continuation returned null"));
|
|
return;
|
|
}
|
|
task.addOnSuccessListener(TaskExecutors.zza, this.zzb);
|
|
task.addOnFailureListener(TaskExecutors.zza, this.zzb);
|
|
task.addOnCanceledListener(TaskExecutors.zza, this.zzb);
|
|
} catch (RuntimeExecutionException e) {
|
|
if (e.getCause() instanceof Exception) {
|
|
this.zzb.zzc.zza((Exception) e.getCause());
|
|
} else {
|
|
this.zzb.zzc.zza(e);
|
|
}
|
|
} catch (Exception e2) {
|
|
this.zzb.zzc.zza(e2);
|
|
}
|
|
}
|
|
} |