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

49 lines
1.2 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class Gef {
public final boolean a;
public final boolean e;
public Gef(boolean z, boolean z2) {
this.e = z;
this.a = z2;
}
public final String toString() {
boolean z = this.e;
boolean z2 = this.a;
StringBuilder sb = new StringBuilder("PreValidation(tcRequiered=");
sb.append(z);
sb.append(", pinLocked=");
sb.append(z2);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v4 */
/* JADX WARN: Type inference failed for: r0v5 */
public final int hashCode() {
boolean z = this.e;
?? r0 = z;
if (z) {
r0 = 1;
}
boolean z2 = this.a;
return (r0 * 31) + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Gef)) {
return false;
}
Gef gef = (Gef) obj;
return this.e == gef.e && this.a == gef.a;
}
}