mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-190558 Join lines: smart concatenation of assignment and the subsequent reassignment with the method call
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Foo {
|
||||
interface X {
|
||||
X getParent();
|
||||
}
|
||||
|
||||
void test(X x) {
|
||||
<caret>x = x.getParent();
|
||||
x = x.getParent();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user