discord-jadx/app/src/main/java/z/d.java

33 lines
899 B
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package z;
import bolts.ExecutorException;
import java.util.concurrent.Executor;
/* compiled from: Task */
public class d implements c<TResult, Void> {
public final /* synthetic */ h a;
public final /* synthetic */ c b;
/* renamed from: c reason: collision with root package name */
2021-07-27 00:35:07 +00:00
public final /* synthetic */ Executor f2903c;
2021-07-24 02:37:17 +00:00
public d(g gVar, h hVar, c cVar, Executor executor) {
this.a = hVar;
this.b = cVar;
2021-07-27 00:35:07 +00:00
this.f2903c = executor;
2021-07-24 02:37:17 +00:00
}
/* Return type fixed from 'java.lang.Object' to match base method */
@Override // z.c
public Void a(g gVar) throws Exception {
h hVar = this.a;
c cVar = this.b;
try {
2021-07-27 00:35:07 +00:00
this.f2903c.execute(new e(hVar, cVar, gVar));
2021-07-24 02:37:17 +00:00
return null;
} catch (Exception e) {
hVar.b(new ExecutorException(e));
return null;
}
}
}