inplace introduce field/constant: restore anchors if they were changed during template

This commit is contained in:
anna
2011-03-22 16:15:07 +01:00
parent 6450fb7772
commit 611019175f
5 changed files with 50 additions and 2 deletions
@@ -0,0 +1,5 @@
class Test {
void foo(boolean opaque) {
opaq<caret>ue
}
}
@@ -0,0 +1,8 @@
class Test {
private boolean opaque;
void foo(boolean opaque) {
this.opaque = opaque;
}
}