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