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,70 @@
package com.applovin.impl;
import com.applovin.exoplayer2.common.base.Preconditions;
/* loaded from: classes.dex */
final class hk extends ib {
final transient Object c;
private transient int d;
@Override // com.applovin.impl.cb
public boolean e() {
return false;
}
@Override // com.applovin.impl.ib
public boolean g() {
return this.d != 0;
}
@Override // java.util.AbstractCollection, java.util.Collection, java.util.Set
public int size() {
return 1;
}
@Override // java.util.AbstractCollection
public String toString() {
return '[' + this.c.toString() + ']';
}
public hk(Object obj) {
this.c = Preconditions.checkNotNull(obj);
}
@Override // com.applovin.impl.cb, java.util.AbstractCollection, java.util.Collection
public boolean contains(Object obj) {
return this.c.equals(obj);
}
@Override // java.util.AbstractCollection, java.util.Collection, java.lang.Iterable, java.util.Set
public pp iterator() {
return xb.a(this.c);
}
@Override // com.applovin.impl.ib
public eb f() {
return eb.a(this.c);
}
@Override // com.applovin.impl.cb
public int a(Object[] objArr, int i) {
objArr[i] = this.c;
return i + 1;
}
@Override // com.applovin.impl.ib, java.util.Collection, java.util.Set
public final int hashCode() {
int i = this.d;
if (i != 0) {
return i;
}
int hashCode = this.c.hashCode();
this.d = hashCode;
return hashCode;
}
public hk(Object obj, int i) {
this.c = obj;
this.d = i;
}
}