package p009c1; import java.util.Iterator; /* renamed from: c1.t */ /* loaded from: classes.dex */ public abstract class AbstractC0515t implements Iterator { @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"); } }