For example, combining these two lines with the CTRL+ key combination Jin Eclipse results in the following:
something().somethingElse()
.yetAnotherThing();
something().somethingElse() .yetAnotherThing();
Is there a way to join these lines so that it leads to the following:
// Notice there is no excess whitespace
something().somethingElse().yetAnotherThing();
source
share