package t4;

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

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

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

    public a(int i10, Object obj) {
        this.f32942a = i10;
        this.f32943b = obj;
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || a.class != obj.getClass()) {
            return false;
        }
        a aVar = (a) obj;
        if (this.f32942a != aVar.f32942a) {
            return false;
        }
        Object obj2 = this.f32943b;
        Object obj3 = aVar.f32943b;
        if (obj2 != obj3) {
            return obj2 != null && obj2.equals(obj3);
        }
        return true;
    }

    public final int hashCode() {
        int i10 = (679 + this.f32942a) * 97;
        Object obj = this.f32943b;
        return i10 + (obj != null ? obj.hashCode() : 0);
    }

    public final String toString() {
        return "IntPair[" + this.f32942a + ", " + this.f32943b + ']';
    }
}
