Reports trivial pattern matches on boolean expressions that can be replaced by conditional statements.

Example:


  val bool: Boolean
  bool match {
    case true => ???
    case false => ???
  }

After the quick-fix is applied:


  val bool: Boolean
  if (bool) {
    ???
  } else {
    ???
  }