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
@@ -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();
}
}