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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
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;
}
}