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
@@ -4,8 +4,8 @@ public open class InnerClassesInGeneric<P, Q>() : java.lang.Object() {
public open class Inner() : java.lang.Object() {
}
public open class Inner2() : Inner(), java.lang.Iterable<P> {
override fun iterator() : java.util.Iterator<P>? {
public open class Inner2() : Inner() {
public open fun iterator() : jet.Iterator<P>? {
throw UnsupportedOperationException()
}
}