IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
If a local variable is declared but not used, it is dead code and should be removed. Doing so will improve maintainability because developers will not wonder what the variable is used for.
FUNCTION f. DATA: LOCAL_1 LIKE BAR. DATA: LOCAL_2 LIKE BAR. "Noncompliant SELECT * FROM LOCAL_1. ENDFUNCTION.