You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
522 B

package p009c1;
import java.util.Iterator;
/* renamed from: c1.t */
/* loaded from: classes.dex */
public abstract class AbstractC0515t implements Iterator<Integer> {
@Override // java.util.Iterator
public /* bridge */ /* synthetic */ Integer next() {
return Integer.valueOf(nextInt());
}
public abstract int nextInt();
@Override // java.util.Iterator
public void remove() {
throw new UnsupportedOperationException("Operation is not supported for read-only collection");
}
}