ArrayIterator is JetObject

This commit is contained in:
Alex Tkachman
2011-10-21 17:40:52 +02:00
parent b31f4b5251
commit 142322d3a1
+2 -1
View File
@@ -1,6 +1,7 @@
package jet.arrays; package jet.arrays;
import jet.Iterator; import jet.Iterator;
import jet.JetObject;
import jet.typeinfo.TypeInfo; import jet.typeinfo.TypeInfo;
import jet.typeinfo.TypeInfoProjection; import jet.typeinfo.TypeInfoProjection;
@@ -10,7 +11,7 @@ import java.util.Arrays;
/** /**
* @author alex.tkachman * @author alex.tkachman
*/ */
public abstract class ArrayIterator<T> implements Iterator<T> { public abstract class ArrayIterator<T> implements Iterator<T>, JetObject {
private final int size; private final int size;
protected int index; protected int index;