package E1;

import java.util.Objects;

/* JADX INFO: loaded from: classes.dex */
public final class b {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final Object f1115a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final Object f1116b;

    public b(Object obj, Object obj2) {
        this.f1115a = obj;
        this.f1116b = obj2;
    }

    public final boolean equals(Object obj) {
        if (!(obj instanceof b)) {
            return false;
        }
        b bVar = (b) obj;
        return Objects.equals(bVar.f1115a, this.f1115a) && Objects.equals(bVar.f1116b, this.f1116b);
    }

    public final int hashCode() {
        Object obj = this.f1115a;
        int iHashCode = obj == null ? 0 : obj.hashCode();
        Object obj2 = this.f1116b;
        return (obj2 != null ? obj2.hashCode() : 0) ^ iHashCode;
    }

    public final String toString() {
        return "Pair{" + this.f1115a + " " + this.f1116b + "}";
    }
}
