Fix test data
This commit is contained in:
@@ -14,7 +14,8 @@ public abstract interface Intf {
|
||||
super();
|
||||
}
|
||||
|
||||
public static int getColor(Intf $this) {
|
||||
public static int getColor(@org.jetbrains.annotations.NotNull()
|
||||
Intf $this) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -51,7 +52,8 @@ public abstract interface IntfWithDefaultImpls {
|
||||
super();
|
||||
}
|
||||
|
||||
public static void a(IntfWithDefaultImpls $this) {
|
||||
public static void a(@org.jetbrains.annotations.NotNull()
|
||||
IntfWithDefaultImpls $this) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -67,8 +67,7 @@ import java.lang.System;
|
||||
public abstract class NullableBundleProperty<EE extends java.lang.Object> implements kotlin.properties.ReadWriteProperty<java.lang.Object, EE> {
|
||||
private final java.lang.String key = null;
|
||||
|
||||
private final java.lang.String toKey(@org.jetbrains.annotations.NotNull()
|
||||
kotlin.reflect.KProperty<?> $this$toKey) {
|
||||
private final java.lang.String toKey(kotlin.reflect.KProperty<?> $this$toKey) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ public abstract interface InterfaceWithDefaults<T extends java.lang.Object> {
|
||||
super();
|
||||
}
|
||||
|
||||
public static <T extends java.lang.Object>void foo(foo.InterfaceWithDefaults<T> $this) {
|
||||
public static <T extends java.lang.Object>void foo(@org.jetbrains.annotations.NotNull()
|
||||
foo.InterfaceWithDefaults<T> $this) {
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -36,7 +37,8 @@ public abstract interface SubInterface<T extends java.lang.Object> extends foo.I
|
||||
}
|
||||
|
||||
@java.lang.Override()
|
||||
public static <T extends java.lang.Object>void foo(foo.SubInterface<T> $this) {
|
||||
public static <T extends java.lang.Object>void foo(@org.jetbrains.annotations.NotNull()
|
||||
foo.SubInterface<T> $this) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,7 +38,8 @@ public abstract interface Intf {
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static java.lang.String bar(Intf $this, int bcd) {
|
||||
public static java.lang.String bar(@org.jetbrains.annotations.NotNull()
|
||||
Intf $this, int bcd) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user