Files
openide/java/java-tests/testData/codeInsight/joinLines/DeclarationAndCall_after.java
Tagir Valeev eb75cfe87e ChainCallJoinLinesHandler: join chained calls; assignment/declaration+call
Fixes IDEA-54209 Join Lines should be able to merge multiple method calls into a chained call
2018-04-19 13:16:07 +07:00

7 lines
158 B
Java

class Foo {
void test() {
StringBuilder sb = new StringBuilder().append("foo");<caret>
sb.append("bar");
sb.append("baz");
}
}