IDEA-41246 Ctrl + Shift + Enter problem if array elements are not the same line

This commit is contained in:
peter
2015-07-09 17:34:32 +02:00
parent 9a73082881
commit 4ff9ba80f3
6 changed files with 39 additions and 18 deletions

View File

@@ -0,0 +1,8 @@
public class Foo {
public void fails() {
final String ORIGIN = "";
final String[] expected = {ORIGIN<caret>
System.out.println ( "tes");
}
}