mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
[java] avoid copying nullability type annotations (IDEA-132058)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import foo.TestNotNull;
|
||||
|
||||
class C {
|
||||
private @TestNotNull String s;
|
||||
|
||||
public C(@TestNotNull String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
import foo.TestNotNull;
|
||||
|
||||
class C {
|
||||
private @TestNotNull String s;
|
||||
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user