报告可以省略的冗余 Unit 返回类型。

示例:


  fun test(): Unit {
      ...
  }

该快速修复会移除 Unit 返回类型:


  fun test() {
      ...
  }