what-the-bank/sources/o/geH.java

86 lines
3.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes.dex */
final class geH {
public final InterfaceC14894gbR<Throwable, C14866gag> a;
public final Object b;
public final Object c;
public final AbstractC15029gex d;
public final Throwable e;
/* JADX WARN: Multi-variable type inference failed */
private geH(Object obj, AbstractC15029gex abstractC15029gex, InterfaceC14894gbR<? super Throwable, C14866gag> interfaceC14894gbR, Object obj2, Throwable th) {
this.c = obj;
this.d = abstractC15029gex;
this.a = interfaceC14894gbR;
this.b = obj2;
this.e = th;
}
public /* synthetic */ geH(Object obj, AbstractC15029gex abstractC15029gex, InterfaceC14894gbR interfaceC14894gbR, Object obj2, Throwable th, int i) {
this(obj, (i & 2) != 0 ? null : abstractC15029gex, (i & 4) != 0 ? null : interfaceC14894gbR, (i & 8) != 0 ? null : obj2, (i & 16) != 0 ? null : th);
}
public static /* synthetic */ geH a(geH geh, Object obj, AbstractC15029gex abstractC15029gex, InterfaceC14894gbR interfaceC14894gbR, Object obj2, Throwable th, int i) {
if ((i & 1) != 0) {
obj = geh.c;
}
Object obj3 = obj;
if ((i & 2) != 0) {
abstractC15029gex = geh.d;
}
AbstractC15029gex abstractC15029gex2 = abstractC15029gex;
if ((i & 4) != 0) {
interfaceC14894gbR = geh.a;
}
InterfaceC14894gbR interfaceC14894gbR2 = interfaceC14894gbR;
if ((i & 8) != 0) {
obj2 = geh.b;
}
Object obj4 = obj2;
if ((i & 16) != 0) {
th = geh.e;
}
return new geH(obj3, abstractC15029gex2, interfaceC14894gbR2, obj4, th);
}
public final String toString() {
StringBuilder sb = new StringBuilder("CompletedContinuation(result=");
sb.append(this.c);
sb.append(", cancelHandler=");
sb.append(this.d);
sb.append(", onCancellation=");
sb.append(this.a);
sb.append(", idempotentResume=");
sb.append(this.b);
sb.append(", cancelCause=");
sb.append(this.e);
sb.append(')');
return sb.toString();
}
public final int hashCode() {
Object obj = this.c;
int hashCode = obj == null ? 0 : obj.hashCode();
AbstractC15029gex abstractC15029gex = this.d;
int hashCode2 = abstractC15029gex == null ? 0 : abstractC15029gex.hashCode();
InterfaceC14894gbR<Throwable, C14866gag> interfaceC14894gbR = this.a;
int hashCode3 = interfaceC14894gbR == null ? 0 : interfaceC14894gbR.hashCode();
Object obj2 = this.b;
int hashCode4 = obj2 == null ? 0 : obj2.hashCode();
Throwable th = this.e;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (th != null ? th.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof geH)) {
return false;
}
geH geh = (geH) obj;
return C14957gcv.b(this.c, geh.c) && C14957gcv.b(this.d, geh.d) && C14957gcv.b(this.a, geh.a) && C14957gcv.b(this.b, geh.b) && C14957gcv.b(this.e, geh.e);
}
}