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

40 lines
997 B
Java

package o;
/* loaded from: classes3.dex */
public final class WT extends EQ {
public int a;
public String b;
public String d;
public static WT d() {
return new WT();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
WT wt = (WT) obj;
if (this.a != wt.a) {
return false;
}
String str = this.d;
if (str == null ? wt.d != null : !str.equals(wt.d)) {
return false;
}
String str2 = this.b;
String str3 = wt.b;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public final int hashCode() {
String str = this.d;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.b;
return (((hashCode * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.a;
}
}