mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
Remove Object from supertypes in LoadJava testData
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericDeep(p0: java.lang.Class<Any?>?) : java.lang.Object()
|
||||
public open class ConstructorGenericDeep(p0: java.lang.Class<Any?>?)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericDeep : java.lang.Object {
|
||||
public open class ConstructorGenericDeep {
|
||||
public constructor ConstructorGenericDeep(/*0*/ p0: java.lang.Class<kotlin.Any?>?)
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericSimple(p0: Any?) : java.lang.Object()
|
||||
public open class ConstructorGenericSimple(p0: Any?)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericSimple : java.lang.Object {
|
||||
public open class ConstructorGenericSimple {
|
||||
public constructor ConstructorGenericSimple(/*0*/ p0: kotlin.Any?)
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericUpperBound(p0: java.util.RandomAccess?) : java.lang.Object()
|
||||
public open class ConstructorGenericUpperBound(p0: java.util.RandomAccess?)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericUpperBound : java.lang.Object {
|
||||
public open class ConstructorGenericUpperBound {
|
||||
public constructor ConstructorGenericUpperBound(/*0*/ p0: java.util.RandomAccess?)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user