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