Unused Local Variables and Formal Parameters (ULVFP)

Description:

ULVFP detects if a local variable is declared but never used.

Example:

   class A {
       void f() {
           int i; // warning message will be produced
       }
   }