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.
36 lines
864 B
36 lines
864 B
package p020g0;
|
|
|
|
/* renamed from: g0.e */
|
|
/* loaded from: classes.dex */
|
|
public class C0736e<F, S> {
|
|
|
|
/* renamed from: a */
|
|
public final F f2323a;
|
|
|
|
/* renamed from: b */
|
|
public final S f2324b;
|
|
|
|
public C0736e(F f, S s) {
|
|
this.f2323a = f;
|
|
this.f2324b = s;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (obj instanceof C0736e) {
|
|
C0736e c0736e = (C0736e) obj;
|
|
return C0734d.m3043a(c0736e.f2323a, this.f2323a) && C0734d.m3043a(c0736e.f2324b, this.f2324b);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
F f = this.f2323a;
|
|
int hashCode = f == null ? 0 : f.hashCode();
|
|
S s = this.f2324b;
|
|
return hashCode ^ (s != null ? s.hashCode() : 0);
|
|
}
|
|
|
|
public String toString() {
|
|
return "Pair{" + this.f2323a + " " + this.f2324b + "}";
|
|
}
|
|
} |