what-the-bank/sources/com/kofax/mobile/sdk/al/a.java

23 lines
564 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.mobile.sdk.al;
import bolts.Continuation;
import bolts.Task;
import com.kofax.mobile.sdk._internal.k;
/* loaded from: classes3.dex */
public class a<T> implements Continuation<T, Task<T>> {
private final String tag;
public a(String str) {
this.tag = str;
}
/* renamed from: then, reason: merged with bridge method [inline-methods] */
public Task<T> m287then(Task<T> task) {
if (task.isFaulted()) {
k.e(this.tag, "Exception", (Throwable) task.getError());
}
return task;
}
}