Replaces a call on a Map of find and map with apply.
Before:
map.find(_ == k).map(_._2)
After:
map(k)