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
@@ -35,6 +35,13 @@ public final class ErrorInConstructorParameter {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.util.List<ABC> c = null;
|
||||
|
||||
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String a, @org.jetbrains.annotations.NotNull()
|
||||
ABC b, @org.jetbrains.annotations.NotNull()
|
||||
java.util.List<? extends ABC> c) {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getA() {
|
||||
return null;
|
||||
@@ -49,13 +56,6 @@ public final class ErrorInConstructorParameter {
|
||||
public final java.util.List<ABC> getC() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String a, @org.jetbrains.annotations.NotNull()
|
||||
ABC b, @org.jetbrains.annotations.NotNull()
|
||||
java.util.List<? extends ABC> c) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
@@ -69,6 +69,10 @@ public final class ErrorInDeclarations {
|
||||
public ABC p2;
|
||||
public BCD<java.lang.String> p3;
|
||||
|
||||
public ErrorInDeclarations() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getP1() {
|
||||
return null;
|
||||
@@ -119,10 +123,6 @@ public final class ErrorInDeclarations {
|
||||
public final ABC f4() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public ErrorInDeclarations() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
|
||||
Reference in New Issue
Block a user