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
@@ -21,17 +21,21 @@ public final class Foo {
@java.lang.Deprecated()
private final int prop = 0;
public Foo() {
super();
}
@java.lang.Deprecated()
public final void foo(int a) {
}
@java.lang.Deprecated()
public static void getProp$annotations() {
public final int getProp() {
return 0;
}
@java.lang.Deprecated()
public final int getProp() {
return 0;
public static void getProp$annotations() {
}
@java.lang.Deprecated()
@@ -42,8 +46,4 @@ public final class Foo {
@java.lang.Deprecated()
public final void setFoo(int value) {
}
public Foo() {
super();
}
}