Files
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

8 lines
165 B
Java

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