mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-168048 Constructor parameters are generated with @Nonnull annotations even though the class is annotated with @ParametersAreNonnullByDefault
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
@foo.NonnullByDefault
|
||||
class C {
|
||||
Object o;
|
||||
@javax.annotation.Nonnull String s;
|
||||
|
||||
public C(Object o, String s) {<caret>
|
||||
this.o = o;
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
@foo.NonnullByDefault
|
||||
class C {
|
||||
Object o;
|
||||
@javax.annotation.Nonnull String s;
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user