- 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
56 lines
1.4 KiB
Java
56 lines
1.4 KiB
Java
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();
|
|
}
|
|
}
|
|
}
|