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

56 lines
1.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class YBI {
public final boolean a;
public final int e;
private /* synthetic */ YBI(byte b) {
this(false, 0);
}
public YBI(boolean z, int i) {
this.a = z;
this.e = i;
}
public final String toString() {
boolean z = this.a;
int i = this.e;
StringBuilder sb = new StringBuilder("PermissionFlags(autoSaveRequiredFlag=");
sb.append(z);
sb.append(", customUserAgentFlag=");
sb.append(i);
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.a;
?? r0 = z;
if (z) {
r0 = 1;
}
return (r0 * 31) + Integer.hashCode(this.e);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof YBI)) {
return false;
}
YBI ybi = (YBI) obj;
return this.a == ybi.a && this.e == ybi.e;
}
public YBI() {
this((byte) 0);
}
}