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

68 lines
1.9 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* renamed from: o.Xt, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public class C1195Xt implements Parcelable {
public static final Parcelable.Creator<C1195Xt> CREATOR = new Parcelable.Creator<C1195Xt>() { // from class: o.Xt.4
@Override // android.os.Parcelable.Creator
public final /* synthetic */ C1195Xt createFromParcel(Parcel parcel) {
return new C1195Xt(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ C1195Xt[] newArray(int i) {
return new C1195Xt[i];
}
};
public String c;
public String d;
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public C1195Xt(String str, String str2) {
this.c = str;
this.d = str2;
}
protected C1195Xt(Parcel parcel) {
this.c = parcel.readString();
this.d = parcel.readString();
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
C1195Xt c1195Xt = (C1195Xt) obj;
String str = this.c;
if (str == null ? c1195Xt.c != null : !str.equals(c1195Xt.c)) {
return false;
}
String str2 = this.d;
String str3 = c1195Xt.d;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public int hashCode() {
String str = this.c;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.d;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.c);
parcel.writeString(this.d);
}
}