Removes unnecessary gets when getting a value from map given a key.
Before:
map.get(k).get
After:
map(k)