All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.report.rules.pmd.IfStmtsMustUseBraces.html Maven / Gradle / Ivy



IfStmtsMustUseBraces

IfStmtsMustUseBraces

Avoid using if statements without using braces to surround the code block. If the code formatting or indentation is lost then it becomes difficult to separate the code being controlled from the rest.

                   
//IfStatement[count(*) < 3][not(Statement/Block)]
                   

Example(s):

 

if (foo)	// not recommended
	x++;

if (foo) {	// preferred approach
	x++;
}

 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy