34 lines
725 B
Java
34 lines
725 B
Java
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;
|
|
}
|
|
}
|