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,5 +1,5 @@
package test;
public open class NotNullField() : java.lang.Object() {
public open class NotNullField() {
public var hi: String = "";
}
@@ -1,6 +1,6 @@
package test
public open class NotNullField : java.lang.Object {
public open class NotNullField {
public constructor NotNullField()
public final var hi: kotlin.String
}
@@ -1,5 +1,5 @@
package test
public open class NotNullIntArray() : java.lang.Object() {
public open class NotNullIntArray() {
public open fun hi(): IntArray = throw Exception()
}
@@ -1,6 +1,6 @@
package test
public open class NotNullIntArray : java.lang.Object {
public open class NotNullIntArray {
public constructor NotNullIntArray()
public open fun hi(): kotlin.IntArray
}
@@ -1,5 +1,5 @@
package test
public open class NotNullMethod() : java.lang.Object() {
public open class NotNullMethod() {
public open fun hi(): String = ""
}
@@ -1,6 +1,6 @@
package test
public open class NotNullMethod : java.lang.Object {
public open class NotNullMethod {
public constructor NotNullMethod()
public open fun hi(): kotlin.String
}
@@ -1,5 +1,5 @@
package test
public open class NotNullObjectArray() : java.lang.Object() {
public open class NotNullObjectArray() {
public open fun hi(): Array<Any> = throw Exception()
}
@@ -1,6 +1,6 @@
package test
public open class NotNullObjectArray : java.lang.Object {
public open class NotNullObjectArray {
public constructor NotNullObjectArray()
public open fun hi(): kotlin.Array<kotlin.Any>
}
@@ -1,5 +1,5 @@
package test
public open class NotNullParameter() : java.lang.Object() {
public open class NotNullParameter() {
public open fun hi(p0: String): Unit { }
}
@@ -1,6 +1,6 @@
package test
public open class NotNullParameter : java.lang.Object {
public open class NotNullParameter {
public constructor NotNullParameter()
public open fun hi(/*0*/ p0: kotlin.String): kotlin.Unit
}