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