Update KAPT stubs for tests
Update expected outputs so they match the new sorting rules.
This commit is contained in:
committed by
Yan Zhulanow
parent
3b2986f069
commit
dfdd107fc0
@@ -3,15 +3,15 @@ import java.lang.System;
|
||||
@kotlin.Metadata()
|
||||
public abstract class Base {
|
||||
|
||||
public Base() {
|
||||
super();
|
||||
}
|
||||
|
||||
protected abstract void doJob(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String job, int delay);
|
||||
|
||||
protected abstract <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
|
||||
T job, int delay);
|
||||
|
||||
public Base() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
@@ -22,6 +22,10 @@ import java.lang.System;
|
||||
@kotlin.Metadata()
|
||||
public final class Impl extends Base {
|
||||
|
||||
public Impl() {
|
||||
super();
|
||||
}
|
||||
|
||||
@java.lang.Override()
|
||||
protected void doJob(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String job, int delay) {
|
||||
@@ -31,8 +35,4 @@ public final class Impl extends Base {
|
||||
protected <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
|
||||
T job, int delay) {
|
||||
}
|
||||
|
||||
public Impl() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user