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 Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
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 Analysis scans to your CI pipelines