mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
MemberModel: do not suggest moving into class if there's enclosing class present (IDEA-274893)
GitOrigin-RevId: 8800ed4e42320a3df002be58955a8a02f6149c17
This commit is contained in:
committed by
intellij-monorepo-bot
parent
358420d1ea
commit
fb9bddf05c
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user