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
+5
-5
@@ -26,9 +26,8 @@ public final class User {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String name = "John";
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getName() {
|
||||
return null;
|
||||
public User() {
|
||||
super();
|
||||
}
|
||||
|
||||
public User(@org.jetbrains.annotations.NotNull()
|
||||
@@ -36,7 +35,8 @@ public final class User {
|
||||
super();
|
||||
}
|
||||
|
||||
public User() {
|
||||
super();
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getName() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,14 +25,14 @@ public final class Simple {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final test.Simple.Companion Companion = null;
|
||||
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
}
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
}
|
||||
|
||||
@kotlin.Metadata()
|
||||
public static final class NestedClass {
|
||||
|
||||
|
||||
@@ -28,6 +28,15 @@ public final class State {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String someString = null;
|
||||
|
||||
public State(int someInt, long someLong) {
|
||||
super();
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
|
||||
java.lang.String someString) {
|
||||
super();
|
||||
}
|
||||
|
||||
public final int getSomeInt() {
|
||||
return 0;
|
||||
}
|
||||
@@ -40,13 +49,4 @@ public final class State {
|
||||
public final java.lang.String getSomeString() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
|
||||
java.lang.String someString) {
|
||||
super();
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,10 @@ import java.lang.System;
|
||||
@kotlin.Metadata()
|
||||
public final class Simple {
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
}
|
||||
@@ -23,10 +27,6 @@ public final class Simple {
|
||||
public final int heavyMethod() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
|
||||
Reference in New Issue
Block a user