Files
rr3-apk/decompiled/sources/com/tapjoy/internal/u1.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

61 lines
2.2 KiB
Java

package com.tapjoy.internal;
import com.tapjoy.TJDeviceNetwork;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class u1 {
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
public final String f;
public u1() {
this.a = null;
this.b = null;
this.c = null;
this.d = null;
this.e = null;
this.f = null;
TJDeviceNetwork tJDeviceNetwork = TJDeviceNetwork.INSTANCE;
this.a = tJDeviceNetwork.getCarrierName();
this.b = tJDeviceNetwork.getCarrierNameSim();
this.f = tJDeviceNetwork.getDeviceCountrySIM();
this.c = tJDeviceNetwork.getCarrierCountryCode();
this.d = tJDeviceNetwork.getMobileCountryCode();
this.e = tJDeviceNetwork.getMobileNetworkCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof u1)) {
return false;
}
u1 u1Var = (u1) obj;
return Intrinsics.areEqual(this.a, u1Var.a) && Intrinsics.areEqual(this.b, u1Var.b) && Intrinsics.areEqual(this.c, u1Var.c) && Intrinsics.areEqual(this.d, u1Var.d) && Intrinsics.areEqual(this.e, u1Var.e) && Intrinsics.areEqual(this.f, u1Var.f);
}
public final int hashCode() {
String str = this.a;
int hashCode = (str == null ? 0 : str.hashCode()) * 31;
String str2 = this.b;
int hashCode2 = (hashCode + (str2 == null ? 0 : str2.hashCode())) * 31;
String str3 = this.c;
int hashCode3 = (hashCode2 + (str3 == null ? 0 : str3.hashCode())) * 31;
String str4 = this.d;
int hashCode4 = (hashCode3 + (str4 == null ? 0 : str4.hashCode())) * 31;
String str5 = this.e;
int hashCode5 = (hashCode4 + (str5 == null ? 0 : str5.hashCode())) * 31;
String str6 = this.f;
return hashCode5 + (str6 != null ? str6.hashCode() : 0);
}
public final String toString() {
return "TJCarrierModel(carrierName=" + this.a + ", carrierNameSim=" + this.b + ", carrierCountryCode=" + this.c + ", mobileCountryCode=" + this.d + ", mobileNetworkCode=" + this.e + ", countrySim=" + this.f + ")";
}
}