preserve method call parameters when selecting with tab

This commit is contained in:
peter
2009-10-28 22:48:21 +00:00
parent 0e76e60cb8
commit b29804d2bf
4 changed files with 77 additions and 41 deletions
@@ -0,0 +1,9 @@
public class MyJavaClass {
boolean ffff() {}
{
boolean b = ffff(<caret>239);
}
}
@@ -0,0 +1,9 @@
public class MyJavaClass {
boolean ffff() {}
{
boolean b = <caret>equals(239);
}
}