java-code-styles
java-code-styles copied to clipboard
Consider else statements being on a separate line
If the ELSE statements are on the same line, code looks a bit messier and the else statement cannot be collapsed from the side either.

ELSE is unable to collapse. And the lack of blank space makes the else harder to see and not inline.

This is with it enabled. It collapse and it's cleaner.

You could add a blank line yourself? That's what I do in many places where I want a clear separation. I prefer the current syntax.