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
@@ -103,30 +103,30 @@ public final class TestAnno2 {
@Anno3(value = "field")
private java.lang.String b = "property initializer";
public TestAnno2() {
super();
}
@Anno1()
public final void a(@org.jetbrains.annotations.NotNull()
@Anno3(value = "param-pam-pam")
java.lang.String param) {
}
@Anno3(value = "property")
@java.lang.Deprecated()
public static void getB$annotations() {
}
@org.jetbrains.annotations.NotNull()
@Anno3(value = "getter")
public final java.lang.String getB() {
return null;
}
@Anno3(value = "property")
@java.lang.Deprecated()
public static void getB$annotations() {
}
@Anno3(value = "setter")
public final void setB(@org.jetbrains.annotations.NotNull()
@Anno3(value = "setparam")
java.lang.String p0) {
}
public TestAnno2() {
super();
}
}