[Copied from]: Wrapping chained method calls on a separate line in eclipse for Java
For example, I have this:
someObject.A().B().C();
But I really want this:
someObject.A()
.B()
.C();
I wanted to ask how to achieve that formatting in intellij. I was unable to achieve it. I want to use the same formatting given in this answer.