package e;

import java.io.Serializable;

/* JADX INFO: loaded from: classes.dex */
public final class e<A, B> implements Serializable {

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

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final B f5930c;

    public e(A a2, B b2) {
        this.f5929b = a2;
        this.f5930c = b2;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof e)) {
            return false;
        }
        e eVar = (e) obj;
        return e.s.c.i.a(this.f5929b, eVar.f5929b) && e.s.c.i.a(this.f5930c, eVar.f5930c);
    }

    public int hashCode() {
        A a2 = this.f5929b;
        int iHashCode = (a2 != null ? a2.hashCode() : 0) * 31;
        B b2 = this.f5930c;
        return iHashCode + (b2 != null ? b2.hashCode() : 0);
    }

    public String toString() {
        return '(' + this.f5929b + ", " + this.f5930c + ')';
    }
}
