Files
openide/java/java-tests/testData/codeInsight/generateConstructor/afterParametersForFieldsNotNullByDefaultShouldNotGetExplicitAnnotation.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

10 lines
169 B
Java

@foo.NonnullByDefault
class C {
Object o;
@javax.annotation.Nonnull String s;
C(Object o, String s) {<caret>
this.o = o;
this.s = s;
}
}