- 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
42 lines
1.1 KiB
Java
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);
|
|
}
|
|
}
|
|
}
|