IDEA-64713 Using a comma in code completion inserts a trailing space for method calls but not for variable names

This commit is contained in:
peter
2011-01-27 19:37:00 +01:00
parent 6c8b65e4cd
commit e782c50a1e
4 changed files with 26 additions and 0 deletions
@@ -0,0 +1,10 @@
class AbcdClass {}
class AbcdException extends Throwable {}
class Foo {
{
int aaa;
int aab;
equals(aa<caret>)
}
}