mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 09:36:56 +07:00
Fixes IDEA-54209 Join Lines should be able to merge multiple method calls into a chained call
9 lines
182 B
Java
9 lines
182 B
Java
class Foo {
|
|
void test() {
|
|
StringBuilder sb;
|
|
<caret>sb = new StringBuilder();
|
|
sb.append("foo");
|
|
sb.append("bar");
|
|
sb.append("baz");
|
|
}
|
|
} |