Appearance
Category: clean-codeAnalysis: ASTTags: clean-code
AST
clean-code
Redundant 'if(true)' detected at line {line}. This logic is either debug code or unnecessary.
if (true) { start(); }
if (ready) { start(); }
redundant-if-true