mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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().append("foo");<caret>
|
|
sb.append("bar");
|
|
sb.append("baz");
|
|
}
|
|
} |