I've just moved from eclipse Kepler to eclipse Mars and my Java formatter seems not to behave the same way anymore.
I used to be able to do the following:
object
.method1()
.method2()
.method3();
The formatter would keep my code like that. However since I changed to eclipse mars, everything is wrapped to one line.
I've verified the formatter and I still have the option "Never join already wrapped lines" checked. My project doesn't use specific settings regarding the eclipse formatter. I tried recreating a formatter from scratch and the result is the same.
How can I force eclipse not to join those lines ?
Thanks