IDEA-179871 Automatically use nullable annotations in constructor generation

This commit is contained in:
peter
2018-01-08 20:52:44 +01:00
parent 0d68a7724a
commit 9d1de0c271
4 changed files with 19 additions and 1 deletions
@@ -0,0 +1,9 @@
import org.jetbrains.annotations.Nullable;
class C {
private @Nullable String s;
public C(@Nullable String s) {
this.s = s;
}
}