Update KAPT stubs for tests

Update expected outputs so they match
the new sorting rules.
This commit is contained in:
Ivan Gavrilovic
2021-01-11 12:50:21 +00:00
committed by Yan Zhulanow
parent 3b2986f069
commit dfdd107fc0
61 changed files with 558 additions and 558 deletions
@@ -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();
}
}