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

48 lines
1.4 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class WP {
public String a;
public int b;
public boolean c;
public String d;
public String e;
public boolean h = false;
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
WP wp = (WP) obj;
if (this.b != wp.b || this.c != wp.c || this.h != wp.h) {
return false;
}
String str = this.d;
if (str == null ? wp.d != null : !str.equals(wp.d)) {
return false;
}
String str2 = this.e;
if (str2 == null ? wp.e != null : !str2.equals(wp.e)) {
return false;
}
String str3 = this.a;
String str4 = wp.a;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public final int hashCode() {
String str = this.d;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.e;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
int i = this.b;
boolean z = this.c;
boolean z2 = this.h;
String str3 = this.a;
return (((((((((hashCode * 31) + hashCode2) * 31) + i) * 31) + (z ? 1 : 0)) * 31) + (z2 ? 1 : 0)) * 31) + (str3 != null ? str3.hashCode() : 0);
}
}