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

34 lines
697 B
Java
Raw Normal View History

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