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

34 lines
725 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class CtB {
public final boolean e;
public CtB(boolean z) {
this.e = z;
}
public final String toString() {
boolean z = this.e;
StringBuilder sb = new StringBuilder("ResetPinRegistrationVerification(tcAcceptRequired=");
sb.append(z);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
boolean z = this.e;
if (z) {
return 1;
}
return z ? 1 : 0;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof CtB) && this.e == ((CtB) obj).e;
}
}