- 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
73 lines
1.8 KiB
Java
73 lines
1.8 KiB
Java
package com.facebook.internal.gatekeeper;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class GateKeeper {
|
|
private final String name;
|
|
private final boolean value;
|
|
|
|
public static /* synthetic */ GateKeeper copy$default(GateKeeper gateKeeper, String str, boolean z, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = gateKeeper.name;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
z = gateKeeper.value;
|
|
}
|
|
return gateKeeper.copy(str, z);
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.name;
|
|
}
|
|
|
|
public final boolean component2() {
|
|
return this.value;
|
|
}
|
|
|
|
public final GateKeeper copy(String name, boolean z) {
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
return new GateKeeper(name, z);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof GateKeeper)) {
|
|
return false;
|
|
}
|
|
GateKeeper gateKeeper = (GateKeeper) obj;
|
|
return Intrinsics.areEqual(this.name, gateKeeper.name) && this.value == gateKeeper.value;
|
|
}
|
|
|
|
public final String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public final boolean getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public int hashCode() {
|
|
int hashCode = this.name.hashCode() * 31;
|
|
boolean z = this.value;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return hashCode + i;
|
|
}
|
|
|
|
public String toString() {
|
|
return "GateKeeper(name=" + this.name + ", value=" + this.value + ')';
|
|
}
|
|
|
|
public GateKeeper(String name, boolean z) {
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
this.name = name;
|
|
this.value = z;
|
|
}
|
|
}
|