43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/* renamed from: o.fZU, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class C13396fZU<A, B> implements Serializable {
|
||
|
public final A d;
|
||
|
public final B e;
|
||
|
|
||
|
public C13396fZU(A a, B b) {
|
||
|
this.d = a;
|
||
|
this.e = b;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("(");
|
||
|
sb.append(this.d);
|
||
|
sb.append(", ");
|
||
|
sb.append(this.e);
|
||
|
sb.append(')');
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
A a = this.d;
|
||
|
int hashCode = a == null ? 0 : a.hashCode();
|
||
|
B b = this.e;
|
||
|
return (hashCode * 31) + (b != null ? b.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof C13396fZU)) {
|
||
|
return false;
|
||
|
}
|
||
|
C13396fZU c13396fZU = (C13396fZU) obj;
|
||
|
return C14957gcv.b(this.d, c13396fZU.d) && C14957gcv.b(this.e, c13396fZU.e);
|
||
|
}
|
||
|
}
|