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