不报告常量(即标记为 static 或 final 的变量)。
static
final
示例:
public class A { Object object; // 警告 final static int MODE = 0; // 常量,无警告 }