inplace introduce param: no need to correct caret position with or without conflict

This commit is contained in:
anna
2011-07-15 14:28:40 +04:00
parent a2c55164f2
commit bc579f1e58
6 changed files with 46 additions and 6 deletions
@@ -0,0 +1,8 @@
class Test {
void foo(int p) {
int i<caret>i = 4 + 2;
//comment
String var = "";
}
}
@@ -0,0 +1,8 @@
class Test {
void foo() {
int i<caret>i = 4 + 2;
//comment
String var = "";
}
}
@@ -0,0 +1,7 @@
class Test {
void foo(int ii) {
<caret>//comment
String var = "";
}
}