Reports a call to find and map on Map and suggests to replace it with get.


  val map = Map(1 -> 42)
  map.find(_._1 == k).map(_._2)

After the quick-fix is applied:


  val map = Map(1 -> 42)
  map.get(k)