报告冗余转换方法调用(toInttoString 等)。

如果转换不会更改集合的类型,则转换是冗余的。

示例:


  "Test".toString
  Seq(1, 2).toSeq

在应用快速修复后:


  "Test".toString
  Seq(1, 2).toSeq