mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
report non-annotated constructor parameter for final @Nullable/@NotNull fields
This commit is contained in:
+9
@@ -55,4 +55,13 @@ class D {
|
||||
D(long l) {
|
||||
myL = l;
|
||||
}
|
||||
}
|
||||
|
||||
class E {
|
||||
final @NotNull C c;
|
||||
|
||||
E(C c) {
|
||||
this.c = c;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user