MemberModel: do not suggest moving into class if there's enclosing class present (IDEA-274893)

GitOrigin-RevId: 8800ed4e42320a3df002be58955a8a02f6149c17
This commit is contained in:
Artemiy Sartakov
2021-08-04 18:05:29 +07:00
committed by intellij-monorepo-bot
parent 358420d1ea
commit fb9bddf05c
3 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
// "Move member into class" "false"
public class beforeIncompleteMethodInClass {
private String testInt;
public beforeIncompleteMethodInClass(int testInt) {
this.testInt = "aaaa";
}
public String getTestInt() {
return testInt;
}
public void setTestInt(String testInt) {
this.testInt = testInt;
}
public<caret>
}