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,55 @@
package com.google.android.gms.internal.ads;
import java.util.Collection;
import java.util.ConcurrentModificationException;
import java.util.Iterator;
import java.util.List;
/* loaded from: classes3.dex */
class zzfwc implements Iterator {
final Iterator zza;
final Collection zzb;
final /* synthetic */ zzfwd zzc;
public zzfwc(zzfwd zzfwdVar) {
this.zzc = zzfwdVar;
Collection collection = zzfwdVar.zzb;
this.zzb = collection;
this.zza = collection instanceof List ? ((List) collection).listIterator() : collection.iterator();
}
public zzfwc(zzfwd zzfwdVar, Iterator it) {
this.zzc = zzfwdVar;
this.zzb = zzfwdVar.zzb;
this.zza = it;
}
@Override // java.util.Iterator
public final boolean hasNext() {
zza();
return this.zza.hasNext();
}
@Override // java.util.Iterator
public final Object next() {
zza();
return this.zza.next();
}
@Override // java.util.Iterator
public final void remove() {
int i;
this.zza.remove();
zzfwg zzfwgVar = this.zzc.zze;
i = zzfwgVar.zzb;
zzfwgVar.zzb = i - 1;
this.zzc.zzc();
}
public final void zza() {
this.zzc.zzb();
if (this.zzc.zzb != this.zzb) {
throw new ConcurrentModificationException();
}
}
}