use kotlin Iterable/Iterator

instead of java Iterable/Iterator
in Kotlin code in tests
This commit is contained in:
Svetlana Isakova
2012-08-14 15:06:02 +04:00
parent 701295fc04
commit df93a26839
14 changed files with 25 additions and 30 deletions
@@ -6,7 +6,7 @@ public class InnerClassesInGeneric<P, Q> {
public class Inner {
}
public class Inner2 extends Inner implements Iterable<P> {
public class Inner2 extends Inner {
public java.util.Iterator<P> iterator() {
throw new UnsupportedOperationException();
}