mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
IDEA-86300 Create local variable intention implemented
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Introduce local variable" "false"
|
||||
|
||||
class a {
|
||||
void a() {
|
||||
int i;
|
||||
i = Integer.par<caret>seInt("10");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Introduce local variable" "false"
|
||||
|
||||
class a {
|
||||
void a() {
|
||||
int i = Integer.par<caret>seInt("10");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Introduce local variable" "false"
|
||||
|
||||
class a {
|
||||
void a() {
|
||||
a<caret>();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user