Update lightclass tests renderer
+mute invalid old light classes tests
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
public interface Generic <N, NN> {
|
||||
N a(N n);
|
||||
public abstract interface Generic /* Generic*/<N, NN> {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public abstract NN b(@org.jetbrains.annotations.NotNull() NN);// b(NN)
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
NN b(@org.jetbrains.annotations.NotNull NN nn);
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public abstract N a1(@org.jetbrains.annotations.Nullable() N);// a1(N)
|
||||
|
||||
@org.jetbrains.annotations.Nullable
|
||||
N a1(@org.jetbrains.annotations.Nullable N n);
|
||||
@org.jetbrains.annotations.Nullable()
|
||||
public abstract NN b1(@org.jetbrains.annotations.Nullable() NN);// b1(NN)
|
||||
|
||||
public abstract N a(N);// a(N)
|
||||
|
||||
@org.jetbrains.annotations.Nullable
|
||||
NN b1(@org.jetbrains.annotations.Nullable NN nn);
|
||||
}
|
||||
Reference in New Issue
Block a user