36 lines
960 B
Java
36 lines
960 B
Java
|
package com.google.android.gms.internal.measurement;
|
||
|
|
||
|
import java.util.Iterator;
|
||
|
import java.util.NoSuchElementException;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
final class zzac implements Iterator<zzap> {
|
||
|
final Iterator zza;
|
||
|
final Iterator zzb;
|
||
|
|
||
|
@Override // java.util.Iterator
|
||
|
public final boolean hasNext() {
|
||
|
if (this.zza.hasNext()) {
|
||
|
return true;
|
||
|
}
|
||
|
return this.zzb.hasNext();
|
||
|
}
|
||
|
|
||
|
@Override // java.util.Iterator
|
||
|
public final /* synthetic */ zzap next() {
|
||
|
if (this.zza.hasNext()) {
|
||
|
return new zzat(((Integer) this.zza.next()).toString());
|
||
|
}
|
||
|
if (this.zzb.hasNext()) {
|
||
|
return new zzat((String) this.zzb.next());
|
||
|
}
|
||
|
throw new NoSuchElementException();
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public zzac(zzae zzaeVar, Iterator it, Iterator it2) {
|
||
|
this.zza = it;
|
||
|
this.zzb = it2;
|
||
|
}
|
||
|
}
|