30 lines
666 B
Java
30 lines
666 B
Java
package o;
|
|
|
|
import java.util.Iterator;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class gdI extends gdF {
|
|
|
|
/* JADX INFO: Add missing generic type declarations: [T] */
|
|
/* loaded from: classes.dex */
|
|
public static final class LWm<T> implements gdE<T> {
|
|
private Iterator d;
|
|
|
|
public LWm(Iterator it) {
|
|
this.d = it;
|
|
}
|
|
|
|
@Override // o.gdE
|
|
public final Iterator<T> e() {
|
|
return this.d;
|
|
}
|
|
}
|
|
|
|
public static final <T> gdE<T> b(Iterator<? extends T> it) {
|
|
C14957gcv.e(it, "");
|
|
LWm lWm = new LWm(it);
|
|
C14957gcv.e(lWm, "");
|
|
return new C14987gds(lWm);
|
|
}
|
|
}
|