38 lines
973 B
Java
38 lines
973 B
Java
package o;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class WH extends EQ {
|
|
public String c;
|
|
public BigDecimal d;
|
|
|
|
public static WH d() {
|
|
return new WH();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
WH wh = (WH) obj;
|
|
BigDecimal bigDecimal = this.d;
|
|
if (bigDecimal == null ? wh.d != null : !bigDecimal.equals(wh.d)) {
|
|
return false;
|
|
}
|
|
String str = this.c;
|
|
String str2 = wh.c;
|
|
return str != null ? str.equals(str2) : str2 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
BigDecimal bigDecimal = this.d;
|
|
int hashCode = bigDecimal != null ? bigDecimal.hashCode() : 0;
|
|
String str = this.c;
|
|
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
|
|
}
|
|
}
|