Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzgyk.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

30 lines
725 B
Java

package com.google.android.gms.internal.ads;
import java.util.Iterator;
import java.util.Map;
/* loaded from: classes3.dex */
final class zzgyk implements Iterator {
private final Iterator zza;
public zzgyk(Iterator it) {
this.zza = it;
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.zza.hasNext();
}
@Override // java.util.Iterator
public final /* bridge */ /* synthetic */ Object next() {
Map.Entry entry = (Map.Entry) this.zza.next();
return entry.getValue() instanceof zzgym ? new zzgyj(entry, null) : entry;
}
@Override // java.util.Iterator
public final void remove() {
this.zza.remove();
}
}