You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.3 KiB

package p006b1;
import java.io.Serializable;
import p039m1.C1470g;
/* renamed from: b1.e */
/* loaded from: classes.dex */
public final class C0475e<A, B> implements Serializable {
/* renamed from: d */
public final A f1682d;
/* renamed from: e */
public final B f1683e;
public C0475e(A a, B b) {
this.f1682d = a;
this.f1683e = b;
}
/* renamed from: a */
public final A m3630a() {
return this.f1682d;
}
/* renamed from: b */
public final B m3629b() {
return this.f1683e;
}
/* renamed from: c */
public final A m3628c() {
return this.f1682d;
}
/* renamed from: d */
public final B m3627d() {
return this.f1683e;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj instanceof C0475e) {
C0475e c0475e = (C0475e) obj;
return C1470g.m1296a(this.f1682d, c0475e.f1682d) && C1470g.m1296a(this.f1683e, c0475e.f1683e);
}
return false;
}
public int hashCode() {
A a = this.f1682d;
int hashCode = (a == null ? 0 : a.hashCode()) * 31;
B b = this.f1683e;
return hashCode + (b != null ? b.hashCode() : 0);
}
public String toString() {
return '(' + this.f1682d + ", " + this.f1683e + ')';
}
}