Files
codeql/java/ql/test/stubs/okhttp-4.9.3/kotlin/collections/IntIterator.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

15 lines
411 B
Java
Generated

// Generated automatically from kotlin.collections.IntIterator for testing purposes
package kotlin.collections;
import java.util.Iterator;
import kotlin.jvm.internal.markers.KMappedMarker;
abstract public class IntIterator implements Iterator<Integer>, KMappedMarker
{
public IntIterator(){}
public abstract int nextInt();
public final Integer next(){ return null; }
public void remove(){}
}