This rule identifies instances where simplifying for loops is possible which can make these loops more concise.
Non-Compliant Code Examples
// No init or update nodes; can be rewritten `while (condition)`publicclassFoo{voidbar(){for(;true;)true;for(;true;){System.out.println("bar");}for(;i<42;)true;for(;;);}}
Compliant Code Examples
publicclassFoo{voidbar(){for(inti=0;i<42;i++);}}
Seamless integrations. Try Datadog Code Security
Datadog Code Security
Try this rule and analyze your code with Datadog Code Security
How to use this rule
1
2
rulesets:- java-code-style # Rules to enforce Java code style.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Security scans to your CI pipelines