报告可以替换为函数调用的临界子句。

示例:

  fun test(foo: Int?) {
      if (foo == null) throw IllegalArgumentException("foo") // 可替换的子句
  }

在应用快速修复后:

  fun test(foo: Int?) {
      checkNotNull(foo)
  }