Can the CheckStyle module "NeedBraces" work with nested if/else blocks? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T19:04:15Z http://stackoverflow.com/feeds/question/382633 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/382633/can-the-checkstyle-module-needbraces-work-with-nested-if-else-blocks 3 Can the CheckStyle module "NeedBraces" work with nested if/else blocks? Justin Standard 2008-12-20T00:11:13Z 2008-12-22T18:46:01Z <p>We are using <a href="http://checkstyle.sourceforge.net/index.html" rel="nofollow">CheckStyle</a> to enforce our style standards. One of the style rules we opted to include was the <em>NeedBraces</em> module.</p> <p><em><a href="http://checkstyle.sourceforge.net/config_blocks.html#NeedBraces" rel="nofollow">NeedBraces</a></em> specifies that every block type statement (such as <code>if</code>, <code>else</code>, <code>for</code>) must have opening and closing curly braces. However, as far as I can tell it isn't working entirely correctly.</p> <p>This example will trigger a CheckStyle error.</p> <pre><code> if (true) { System.out.println("20"); } else System.out.println("30"); </code></pre> <p>Because the else case doesn't have braces. However, the next example fails to trigger a CheckStyle error.</p> <pre><code> if (true) { System.out.println("20"); } else if (true) { System.out.println("30"); } </code></pre> <p>This should have failed because of the missing braces on the else case, but checkstyle lets it pass. After double checking the documentation, I can't find any reason why this isn't working right. </p> <p>So... <strong>Can the CheckStyle module "NeedBraces" work with nested if/else blocks?</strong> Any ideas?</p> <p><hr /></p> <p>The answer to this question begs <a href="http://stackoverflow.com/questions/387008/is-there-a-checkstyle-rule-to-force-if-else-keywords-to-be-on-the-same-line-in">another question</a>: is there a rule to flag the above undesirable code as a violation?</p> http://stackoverflow.com/questions/382633/can-the-checkstyle-module-needbraces-work-with-nested-if-else-blocks/382695#382695 3 Answer by Software Monkey for Can the CheckStyle module "NeedBraces" work with nested if/else blocks? Software Monkey 2008-12-20T00:54:46Z 2008-12-20T00:54:46Z <p>I believe it is making an exception because, though formatted strangely, what you have is an "else if". It shouldn't force you to put braces around the "if" in this case because you would end up with "... else { if { ... } }</p> <p>Your code should be formatted:</p> <pre><code>if (true) { System.out.println("20"); } else if (true) { System.out.println("30"); } </code></pre> http://stackoverflow.com/questions/382633/can-the-checkstyle-module-needbraces-work-with-nested-if-else-blocks/382799#382799 1 Answer by Vinegar for Can the CheckStyle module "NeedBraces" work with nested if/else blocks? Vinegar 2008-12-20T02:35:15Z 2008-12-20T03:22:16Z <p>In your first example if you attempt to add another statement under your <em>else</em> 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 <em>else</em> not outside.</p>