Let's say I have the following toString() method:
String toString() { name }
I put my curstor on the first line, and I'm joining all the lines so that everything is on the same line as my method is so short, I end up with:
String toString() {name}
But my preference would be to have a space before and after the 'name' field like so:
I think it makes the code more readable
Perhaps it's just a question of taste, or of some syntax formatting preferences?