报告不必要的转换表达式。

示例:


  static void foo() {
        String o = null;
        Object o2 = (Object) o;
  }