35 lines
838 B
Java
35 lines
838 B
Java
package o;
|
|
|
|
import java.util.Iterator;
|
|
|
|
/* renamed from: o.Mzi, reason: case insensitive filesystem */
|
|
/* loaded from: classes.dex */
|
|
public final class C0717Mzi<T> extends ApF<T> {
|
|
private boolean c = true;
|
|
private final Iterator<? extends T> d;
|
|
private final Iterator<? extends T> i;
|
|
|
|
public C0717Mzi(Iterator<? extends T> it, Iterator<? extends T> it2) {
|
|
this.d = it;
|
|
this.i = it2;
|
|
}
|
|
|
|
@Override // o.ApF
|
|
public final void b() {
|
|
if (this.c) {
|
|
if (this.d.hasNext()) {
|
|
this.b = this.d.next();
|
|
this.a = true;
|
|
return;
|
|
}
|
|
this.c = false;
|
|
}
|
|
if (this.i.hasNext()) {
|
|
this.b = this.i.next();
|
|
this.a = true;
|
|
} else {
|
|
this.a = false;
|
|
}
|
|
}
|
|
}
|