42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package o;
|
|
|
|
/* renamed from: o.Wc, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C1124Wc {
|
|
public final String a;
|
|
public final String c;
|
|
|
|
public C1124Wc(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.a = str;
|
|
this.c = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.c;
|
|
StringBuilder sb = new StringBuilder("CountryDisplay(code=");
|
|
sb.append(str);
|
|
sb.append(", description=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.a.hashCode() * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C1124Wc)) {
|
|
return false;
|
|
}
|
|
C1124Wc c1124Wc = (C1124Wc) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) c1124Wc.a) && C14957gcv.b((Object) this.c, (Object) c1124Wc.c);
|
|
}
|
|
}
|