Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterNullableField.java
Bas Leijdekkers 9a18244121 Document, rename, fix and test PsiUtil.getMaximumModifier()
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785)

GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
2022-05-04 21:22:45 +00:00

9 lines
142 B
Java

import org.jetbrains.annotations.Nullable;
class C {
private @Nullable String s;
C(@Nullable String s) {
this.s = s;
}
}