Remove Object from supertypes in LoadJava testData

This commit is contained in:
Alexander Udalov
2014-07-21 17:30:31 +04:00
parent a79398fa00
commit 5dc37217c8
402 changed files with 961 additions and 961 deletions
@@ -1,6 +1,6 @@
package test
public trait LoadIterable<T> : java.lang.Object {
public trait LoadIterable<T> {
public fun getIterable(): MutableIterable<T>?
public fun setIterable(p0: Iterable<T>?)
}
@@ -1,6 +1,6 @@
package test
public trait LoadIterable</*0*/ T> : java.lang.Object {
public trait LoadIterable</*0*/ T> {
public abstract fun getIterable(): kotlin.MutableIterable<T>?
public abstract fun setIterable(/*0*/ p0: kotlin.Iterable<T>?): kotlin.Unit
}
@@ -1,6 +1,6 @@
package test
public trait LoadIterator<T> : java.lang.Object {
public trait LoadIterator<T> {
public fun getIterator(): MutableIterator<T>?
public fun setIterator(p0: Iterator<T>?)
}
@@ -1,6 +1,6 @@
package test
public trait LoadIterator</*0*/ T> : java.lang.Object {
public trait LoadIterator</*0*/ T> {
public abstract fun getIterator(): kotlin.MutableIterator<T>?
public abstract fun setIterator(/*0*/ p0: kotlin.Iterator<T>?): kotlin.Unit
}
@@ -1,6 +1,6 @@
package test
public open class Max: Object() {
public open class Max {
public open fun max<T : Any?>(p0 : Collection<T>?): T? where T : Comparable<T>? {
throw UnsupportedOperationException()
}
@@ -1,6 +1,6 @@
package test
public open class Max : java.lang.Object {
public open class Max {
public constructor Max()
public open fun </*0*/ T> max(/*0*/ p0: kotlin.Collection<T>?): T? where T : kotlin.Comparable<T>?
}