inplace introduce: insert whitespace before template if needed (IDEA-87487)

This commit is contained in:
Anna Kozlova
2012-08-16 16:23:47 +04:00
parent 2d01b2149c
commit 7f7ce8da4d
4 changed files with 42 additions and 1 deletions
@@ -0,0 +1,5 @@
class Test {
int f(){
return<caret>-1;
}
}
@@ -0,0 +1,9 @@
class Test {
private int anInt;
int f(){
anInt = -1;
return anInt;
}
}