パターンマッチングを行う匿名関数に変換できる match ステートメントを報告します。

例:


  iterable.map(value => value match {
      case Some(value) => whenValue(value)
      case None => whenNothing()
  })

クイックフィックス適用後:


  iterable.map {
      case Some(value) => whenValue(value)
      case None => whenNothing()
  }