- 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
82 lines
2.4 KiB
Java
82 lines
2.4 KiB
Java
package com.tapjoy.internal;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.AbstractList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class i1 implements Serializable {
|
|
public static final h1 d = new h1();
|
|
public final transient m a;
|
|
public transient int b = 0;
|
|
public final List c;
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r2v9, types: [java.util.List] */
|
|
public i1(AbstractList abstractList, m mVar) {
|
|
if (mVar == null) {
|
|
throw new NullPointerException("unknownFields == null");
|
|
}
|
|
this.a = mVar;
|
|
AbstractList abstractList2 = abstractList instanceof l0 ? ((l0) abstractList).b : abstractList;
|
|
AbstractList abstractList3 = abstractList2;
|
|
if (abstractList2 != Collections.emptyList()) {
|
|
boolean z = abstractList2 instanceof t;
|
|
abstractList3 = abstractList2;
|
|
if (!z) {
|
|
t tVar = new t(abstractList2);
|
|
if (tVar.contains(null)) {
|
|
throw new IllegalArgumentException("elements.contains(null)");
|
|
}
|
|
abstractList3 = tVar;
|
|
}
|
|
}
|
|
this.c = abstractList3;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof i1)) {
|
|
return false;
|
|
}
|
|
i1 i1Var = (i1) obj;
|
|
m mVar = this.a;
|
|
if (mVar == null) {
|
|
mVar = m.e;
|
|
}
|
|
m mVar2 = i1Var.a;
|
|
if (mVar2 == null) {
|
|
mVar2 = m.e;
|
|
}
|
|
return mVar.equals(mVar2) && this.c.equals(i1Var.c);
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
if (!this.c.isEmpty()) {
|
|
sb.append(", elements=");
|
|
sb.append(this.c);
|
|
}
|
|
StringBuilder replace = sb.replace(0, 2, "StringList{");
|
|
replace.append('}');
|
|
return replace.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int i = this.b;
|
|
if (i != 0) {
|
|
return i;
|
|
}
|
|
m mVar = this.a;
|
|
if (mVar == null) {
|
|
mVar = m.e;
|
|
}
|
|
int hashCode = (mVar.hashCode() * 37) + this.c.hashCode();
|
|
this.b = hashCode;
|
|
return hashCode;
|
|
}
|
|
}
|