Files
rr3-apk/decompiled/sources/kotlin/Pair.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

54 lines
1.3 KiB
Java

package kotlin;
import java.io.Serializable;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes5.dex */
public final class Pair implements Serializable {
public final Object first;
public final Object second;
public final Object component1() {
return this.first;
}
public final Object component2() {
return this.second;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Pair)) {
return false;
}
Pair pair = (Pair) obj;
return Intrinsics.areEqual(this.first, pair.first) && Intrinsics.areEqual(this.second, pair.second);
}
public final Object getFirst() {
return this.first;
}
public final Object getSecond() {
return this.second;
}
public int hashCode() {
Object obj = this.first;
int hashCode = (obj == null ? 0 : obj.hashCode()) * 31;
Object obj2 = this.second;
return hashCode + (obj2 != null ? obj2.hashCode() : 0);
}
public Pair(Object obj, Object obj2) {
this.first = obj;
this.second = obj2;
}
public String toString() {
return '(' + this.first + ", " + this.second + ')';
}
}