상수(static 및 final로 표기된 필드)는 보고되지 않습니다.
static
final
예:
public class A { Object object; // 경고 final static int MODE = 0; // 상수는 경고하지 않음 }