mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
Fixes IDEA-54209 Join Lines should be able to merge multiple method calls into a chained call
7 lines
158 B
Java
7 lines
158 B
Java
class Foo {
|
|
void test() {
|
|
StringBuilder sb = new StringBuilder();
|
|
<caret>sb.append("foo").append("bar");
|
|
sb.append("baz");
|
|
}
|
|
} |