Field is Not Used (FNU)

Description:

FNU detects if a field is declared with private or default access, but never used by any method, instance, class or variable initializer of the declaring class.

Example:

   class A {
       private int i; // warning message will be produced
       int j; // no warning

       void f() {
           j = 0;
       }
   }