b0e97de8a8
Placing location table inside .java file triggers annotation processor to run on each line table modification (even when the stub declarations themselves are the same). So we move it to the separate file.
28 lines
668 B
Plaintext
Vendored
28 lines
668 B
Plaintext
Vendored
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test<T extends java.lang.CharSequence, N extends java.lang.Number> {
|
|
private final test.TypedListUpdateCallback<java.lang.String, java.lang.Long> x = null;
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface TypedListUpdateCallback<T extends java.lang.Object, C extends java.lang.Number> {
|
|
|
|
public abstract void onInserted(@org.jetbrains.annotations.NotNull()
|
|
C position, @org.jetbrains.annotations.NotNull()
|
|
C count, @org.jetbrains.annotations.NotNull()
|
|
T item);
|
|
}
|