mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-179871 Automatically use nullable annotations in constructor generation
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
class C {
|
||||
private @Nullable String s;
|
||||
|
||||
public C(@Nullable String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user