Is there a way to get eclipse to stop erasing existing line breaks? If I have a method signature like this, I can\'t figure out how to get eclipse to leave it alone:
You can use comments to guide the formatter.
void foo( // int arg1, // int arg2, // int arg3, // int arg4)
will preserve the line breaks at the comments.