what-the-bank/sources/o/C3438axZ.java

33 lines
729 B
Java

package o;
import java.util.Iterator;
/* renamed from: o.axZ, reason: case insensitive filesystem */
/* loaded from: classes.dex */
public final class C3438axZ<T> extends GGK<T> {
private final Iterator<? extends T> c;
private final long e = 1;
private long d = 0;
public C3438axZ(Iterator<? extends T> it) {
this.c = it;
}
@Override // java.util.Iterator
public final boolean hasNext() {
while (this.d < this.e) {
if (!this.c.hasNext()) {
return false;
}
this.c.next();
this.d++;
}
return this.c.hasNext();
}
@Override // o.GGK
public final T a() {
return this.c.next();
}
}