108 lines
3.0 KiB
Java
108 lines
3.0 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* renamed from: o.Vr, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class C1102Vr implements Parcelable {
|
||
|
public static final IeS CREATOR = new IeS(0);
|
||
|
public final String c;
|
||
|
public final String e;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public C1102Vr(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.c = str;
|
||
|
this.e = str2;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Illegal instructions before constructor call */
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public C1102Vr(android.os.Parcel r3) {
|
||
|
/*
|
||
|
r2 = this;
|
||
|
java.lang.String r0 = ""
|
||
|
o.C14957gcv.e(r3, r0)
|
||
|
o.C14957gcv.e(r3, r0)
|
||
|
java.lang.String r1 = r3.readString()
|
||
|
if (r1 != 0) goto Lf
|
||
|
r1 = r0
|
||
|
Lf:
|
||
|
o.C14957gcv.e(r3, r0)
|
||
|
java.lang.String r3 = r3.readString()
|
||
|
if (r3 != 0) goto L19
|
||
|
goto L1a
|
||
|
L19:
|
||
|
r0 = r3
|
||
|
L1a:
|
||
|
r2.<init>(r1, r0)
|
||
|
return
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: o.C1102Vr.<init>(android.os.Parcel):void");
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.e);
|
||
|
}
|
||
|
|
||
|
/* renamed from: o.Vr$IeS */
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class IeS implements Parcelable.Creator<C1102Vr> {
|
||
|
private IeS() {
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ C1102Vr createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new C1102Vr(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ C1102Vr[] newArray(int i) {
|
||
|
return new C1102Vr[i];
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ IeS(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
String str2 = this.e;
|
||
|
StringBuilder sb = new StringBuilder("CountryDisplay(countryName=");
|
||
|
sb.append(str);
|
||
|
sb.append(", countryCode=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.c.hashCode() * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C1102Vr)) {
|
||
|
return false;
|
||
|
}
|
||
|
C1102Vr c1102Vr = (C1102Vr) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) c1102Vr.c) && C14957gcv.b((Object) this.e, (Object) c1102Vr.e);
|
||
|
}
|
||
|
}
|