use kotlin Iterable/Iterator
instead of java Iterable/Iterator in Kotlin code in tests
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user