Synopsis: | Do not use 'if' statements that are always true or always false |
Language: | Java |
Severity Level: | 3 |
Category: | Basic |
Description: |
Do not use "if" statements that are always true or always false.public class Foo { public void close() { if (true) { // ... } } } |