[java] avoid copying nullability type annotations (IDEA-132058)

This commit is contained in:
Roman Shevchenko
2015-11-17 12:58:08 +01:00
parent d36fa738a4
commit 37ef1d7bca
11 changed files with 110 additions and 117 deletions
@@ -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>
}