-
Type: Improvement
-
Resolution: Done
-
Priority: Trivial - P5
-
Affects Version/s: 1.1
-
Component/s: None
-
None
Code loops over maps and fetches the value for each key in the map based on the keySet. This is unnecessary lookup, as you can just use the entrySet to get both key and value at the same time. Patch fixes this.