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,80 @@
package com.fyber.inneractive.sdk.protobuf;
import java.util.Iterator;
import java.util.Map;
/* loaded from: classes2.dex */
public final class a0 extends b0 {
public static class a<K> implements Map.Entry<K, Object> {
public final Map.Entry<K, a0> a;
public a(Map.Entry<K, a0> entry) {
this.a = entry;
}
@Override // java.util.Map.Entry
public final K getKey() {
return this.a.getKey();
}
@Override // java.util.Map.Entry
public final Object getValue() {
a0 value = this.a.getValue();
if (value == null) {
return null;
}
return value.a(null);
}
@Override // java.util.Map.Entry
public final Object setValue(Object obj) {
if (!(obj instanceof o0)) {
throw new IllegalArgumentException("LazyField now only used for MessageSet, and the value of MessageSet must be an instance of MessageLite");
}
a0 value = this.a.getValue();
o0 o0Var = value.a;
value.b = null;
value.a = (o0) obj;
return o0Var;
}
}
public static class b<K> implements Iterator<Map.Entry<K, Object>> {
public final Iterator<Map.Entry<K, Object>> a;
public b(Iterator<Map.Entry<K, Object>> it) {
this.a = it;
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.a.hasNext();
}
@Override // java.util.Iterator
public final Object next() {
Map.Entry<K, Object> next = this.a.next();
return next.getValue() instanceof a0 ? new a(next) : next;
}
@Override // java.util.Iterator
public final void remove() {
this.a.remove();
}
}
@Override // com.fyber.inneractive.sdk.protobuf.b0
public final boolean equals(Object obj) {
return a(null).equals(obj);
}
@Override // com.fyber.inneractive.sdk.protobuf.b0
public final int hashCode() {
return a(null).hashCode();
}
public final String toString() {
return a(null).toString();
}
}