WhileLoopsMustUseBraces - lpohl-Reply/pmd-github-action GitHub Wiki
Rule: WhileLoopsMustUseBraces
Message
Avoid using 'while' statements without curly braces
Description
Avoid using 'while' 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.
Priority
1 (was 3)
Example
while (true) // not recommended
x++;
while (true) { // preferred approach
x++;
}