mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
Remove Object from supertypes in LoadJava testData
This commit is contained in:
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import org.jetbrains.annotations.*
|
||||
|
||||
public trait LoadIterable<T> : java.lang.Object {
|
||||
public trait LoadIterable<T> {
|
||||
Mutable
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable([Mutable] p0: MutableIterable<T>?)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterable</*0*/ T> : java.lang.Object {
|
||||
public trait LoadIterable</*0*/ T> {
|
||||
org.jetbrains.annotations.Mutable() public abstract fun getIterable(): kotlin.MutableIterable<T>?
|
||||
org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): kotlin.Iterable<T>?
|
||||
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: kotlin.MutableIterable<T>?): kotlin.Unit
|
||||
|
||||
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import org.jetbrains.annotations.*
|
||||
|
||||
public trait LoadIterableWithConflict<T> : java.lang.Object {
|
||||
public trait LoadIterableWithConflict<T> {
|
||||
[ReadOnly] [Mutable]
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable([ReadOnly] [Mutable] p0: MutableIterable<T>?)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterableWithConflict</*0*/ T> : java.lang.Object {
|
||||
public trait LoadIterableWithConflict</*0*/ T> {
|
||||
org.jetbrains.annotations.ReadOnly() org.jetbrains.annotations.Mutable() public abstract fun getIterable(): kotlin.MutableIterable<T>?
|
||||
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.ReadOnly() org.jetbrains.annotations.Mutable() p0: kotlin.MutableIterable<T>?): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
import org.jetbrains.annotations.*
|
||||
|
||||
public trait LoadIterableWithNullability<T> : java.lang.Object {
|
||||
public trait LoadIterableWithNullability<T> {
|
||||
Mutable
|
||||
public fun getIterable(): MutableIterable<T>
|
||||
public fun setIterable([Mutable] p0: MutableIterable<T>)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterableWithNullability</*0*/ T> : java.lang.Object {
|
||||
public trait LoadIterableWithNullability</*0*/ T> {
|
||||
org.jetbrains.annotations.Mutable() public abstract fun getIterable(): kotlin.MutableIterable<T>
|
||||
org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): kotlin.Iterable<T>
|
||||
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: kotlin.MutableIterable<T>): kotlin.Unit
|
||||
|
||||
@@ -3,8 +3,8 @@ package test
|
||||
import java.util.ArrayList
|
||||
import org.jetbrains.annotations.*
|
||||
|
||||
public trait LoadIterableWithPropagation: java.lang.Object {
|
||||
public trait LoadIterable<T> : java.lang.Object {
|
||||
public trait LoadIterableWithPropagation {
|
||||
public trait LoadIterable<T> {
|
||||
Mutable
|
||||
public fun getIterable(): MutableIterable<T>?
|
||||
public fun setIterable([Mutable] p0: MutableIterable<T>?)
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
package test
|
||||
|
||||
public trait LoadIterableWithPropagation : java.lang.Object {
|
||||
|
||||
public trait LoadIterable</*0*/ T> : java.lang.Object {
|
||||
public trait LoadIterableWithPropagation {
|
||||
|
||||
public trait LoadIterable</*0*/ T> {
|
||||
org.jetbrains.annotations.Mutable() public abstract fun getIterable(): kotlin.MutableIterable<T>?
|
||||
org.jetbrains.annotations.ReadOnly() public abstract fun getReadOnlyIterable(): kotlin.Iterable<T>?
|
||||
public abstract fun setIterable(/*0*/ org.jetbrains.annotations.Mutable() p0: kotlin.MutableIterable<T>?): kotlin.Unit
|
||||
public abstract fun setReadOnlyIterable(/*0*/ org.jetbrains.annotations.ReadOnly() p0: kotlin.Iterable<T>?): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
public open class LoadIterableImpl</*0*/ T> : test.LoadIterableWithPropagation.LoadIterable<T> {
|
||||
public constructor LoadIterableImpl</*0*/ T>()
|
||||
public open override /*1*/ fun getIterable(): kotlin.MutableIterable<T>?
|
||||
|
||||
Reference in New Issue
Block a user