IDEA-126531 Completion inserts unwanted semicolon

This commit is contained in:
peter
2014-07-18 09:14:07 +02:00
parent 28870690fd
commit f4d3703103
5 changed files with 48 additions and 26 deletions
@@ -0,0 +1,7 @@
class Foo {
{
foo("someTestAttachment", "".getByt<caret>)
}
void foo(String s, byte[] z) {}
}
@@ -0,0 +1,7 @@
class Foo {
{
foo("someTestAttachment", "".getBytes(<caret>))
}
void foo(String s, byte[] z) {}
}