show/hide this revision's text 2 added 18 characters in body

In your first example if you attempt to add another statement under your else block you will need to put braces then. On the other hand, in second example you will add the statement inside the brace. I believe thats the reason CheckStyle is showing error in the former, because its prone to errors. There is a chance that you might endup adding statement without putting braces, when you really want that as part of else not outside.

show/hide this revision's text 1

In your first example if you attempt to add another statement under your else block you will need to put braces then. On the other hand, in second example you will add the statement inside the brace. I believe thats the reason CheckStyle is showing error in the former, because its prone to errors. There is a chance that you might endup adding statement without putting braces, when you really want that as part of else not outside.