restored selection after quickfix

This commit is contained in:
Alexey Kudravtsev
2013-05-24 13:57:24 +04:00
parent 15926a2e78
commit 0f00f05948
3 changed files with 21 additions and 9 deletions

View File

@@ -5,6 +5,6 @@ import java.lang.Integer;
class A{
void test(){
Integer integer = null;
int i = integer != null ? integer.toString().length() : <selection>0</selection>;
int i = integer != null ? integer.toString().length() : <caret><selection>0</selection>;
}
}