Files
rr3-apk/decompiled-community/sources/kotlin/Pair.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -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 + ')';
}
}