Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/drive/zzkw.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
767 B
Java

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