- 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
69 lines
1.7 KiB
Java
69 lines
1.7 KiB
Java
package com.applovin.impl;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class jc implements Comparable {
|
|
private final String a;
|
|
private final String b;
|
|
private final boolean c;
|
|
private final ke d;
|
|
|
|
public String a() {
|
|
return this.b;
|
|
}
|
|
|
|
public String c() {
|
|
return this.a;
|
|
}
|
|
|
|
public ke d() {
|
|
return this.d;
|
|
}
|
|
|
|
public jc(String str, String str2, boolean z, ke keVar) {
|
|
this.a = str;
|
|
this.b = str2;
|
|
this.c = z;
|
|
this.d = keVar;
|
|
}
|
|
|
|
public List b() {
|
|
List l = this.d.l();
|
|
return (l == null || l.isEmpty()) ? Collections.singletonList(this.a) : l;
|
|
}
|
|
|
|
@Override // java.lang.Comparable
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public int compareTo(jc jcVar) {
|
|
return this.b.compareToIgnoreCase(jcVar.b);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
jc jcVar = (jc) obj;
|
|
String str = this.a;
|
|
if (str == null ? jcVar.a != null : !str.equals(jcVar.a)) {
|
|
return false;
|
|
}
|
|
String str2 = this.b;
|
|
if (str2 == null ? jcVar.b == null : str2.equals(jcVar.b)) {
|
|
return this.c == jcVar.c;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = (str != null ? str.hashCode() : 0) * 31;
|
|
String str2 = this.b;
|
|
return ((hashCode + (str2 != null ? str2.hashCode() : 0)) * 31) + (this.c ? 1 : 0);
|
|
}
|
|
}
|