42 lines
969 B
Java
42 lines
969 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Urh<T> {
|
|
public final T b;
|
|
public final T d;
|
|
|
|
public Urh(T t, T t2) {
|
|
this.b = t;
|
|
this.d = t2;
|
|
}
|
|
|
|
public final String toString() {
|
|
T t = this.b;
|
|
T t2 = this.d;
|
|
StringBuilder sb = new StringBuilder("Bilingual(en=");
|
|
sb.append(t);
|
|
sb.append(", th=");
|
|
sb.append(t2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
T t = this.b;
|
|
int hashCode = t == null ? 0 : t.hashCode();
|
|
T t2 = this.d;
|
|
return (hashCode * 31) + (t2 != null ? t2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Urh)) {
|
|
return false;
|
|
}
|
|
Urh urh = (Urh) obj;
|
|
return C14957gcv.b(this.b, urh.b) && C14957gcv.b(this.d, urh.d);
|
|
}
|
|
}
|