Reports the usage of map.lift(n) and suggests replacing it with map.get(n).
map.lift(n)
map.get(n)
Example:
val m = Map(1 -> 1) m.lift(1)
After the quick-fix is applied:
val m = Map(1 -> 1) m.get(1)