Files
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
768 B
Java

package com.google.android.gms.internal.measurement;
import java.util.Iterator;
import java.util.Map;
/* loaded from: classes3.dex */
final class zzjz<K> implements Iterator<Map.Entry<K, Object>> {
private Iterator<Map.Entry<K, Object>> zza;
@Override // java.util.Iterator
public final /* synthetic */ Object next() {
Map.Entry<K, Object> next = this.zza.next();
return next.getValue() instanceof zzju ? new zzjx(next) : next;
}
public zzjz(Iterator<Map.Entry<K, Object>> it) {
this.zza = it;
}
@Override // java.util.Iterator
public final void remove() {
this.zza.remove();
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.zza.hasNext();
}
}