mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-29 09:49:56 +07:00
Document, rename, fix and test PsiUtil.getMaximumModifier()
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785) GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
This commit is contained in:
committed by
intellij-monorepo-bot
parent
6aeb6dabad
commit
9a18244121
@@ -0,0 +1,8 @@
|
||||
// "Create getter for 'i'" "true"
|
||||
public abstract class E {
|
||||
private int i;
|
||||
|
||||
public int getI() {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
public String getS() {
|
||||
String getS() {
|
||||
return s;
|
||||
}
|
||||
}
|
||||
@@ -2,11 +2,11 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
public String getS() {
|
||||
String getS() {
|
||||
return s;
|
||||
}
|
||||
|
||||
public void setS(String s) {
|
||||
void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
class A {
|
||||
private String s;
|
||||
|
||||
public void setS(String s) {
|
||||
void setS(String s) {
|
||||
this.s = s;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Create getter for 'i'" "true"
|
||||
public abstract class E {
|
||||
private int <caret>i;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user