Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/common/zzv.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

42 lines
1.1 KiB
Java

package com.google.android.gms.internal.common;
import java.io.IOException;
import java.util.Iterator;
/* loaded from: classes3.dex */
final class zzv implements Iterable {
final /* synthetic */ CharSequence zza;
final /* synthetic */ zzx zzb;
public zzv(zzx zzxVar, CharSequence charSequence) {
this.zzb = zzxVar;
this.zza = charSequence;
}
@Override // java.lang.Iterable
public final Iterator iterator() {
Iterator zzh;
zzh = this.zzb.zzh(this.zza);
return zzh;
}
public final String toString() {
StringBuilder sb = new StringBuilder();
sb.append('[');
Iterator it = iterator();
try {
if (it.hasNext()) {
sb.append(zzq.zza(it.next(), ", "));
while (it.hasNext()) {
sb.append((CharSequence) ", ");
sb.append(zzq.zza(it.next(), ", "));
}
}
sb.append(']');
return sb.toString();
} catch (IOException e) {
throw new AssertionError(e);
}
}
}