Constants (that is, variables marked static or final) are not reported.
static
final
Example:
public class A { Object object; // warning final static int MODE = 0; // constant, no warning }