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

47 lines
1.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.android.gms.common.internal.ImagesContract;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public class xHz {
@SerializedName(ImagesContract.URL)
public String b;
@SerializedName("checksum")
public String e;
public xHz(String str, String str2) {
this.b = str;
this.e = str2;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
xHz xhz = (xHz) obj;
String str = this.b;
if (str == null ? xhz.b != null : !str.equals(xhz.b)) {
return false;
}
String str2 = this.e;
String str3 = xhz.e;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public int hashCode() {
String str = this.b;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.e;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
public /* synthetic */ xHz() {
}
}