34 lines
767 B
Java
34 lines
767 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NA {
|
|
public final String a;
|
|
public final String e;
|
|
|
|
public NA(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.e = str;
|
|
this.a = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
return this.a;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.e.hashCode() * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof NA)) {
|
|
return false;
|
|
}
|
|
NA na = (NA) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) na.e) && C14957gcv.b((Object) this.a, (Object) na.a);
|
|
}
|
|
}
|