Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createGetterOrSetter/afterCreateSetter.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

8 lines
118 B
Java

// "Create setter for 's'" "true"
class A {
private String s;
void setS(String s) {
this.s = s;
}
}