Use more efficient entrySet iterator instead of keySet + get()
The loop extracted keys from `folderMap` and then called `folderMap.get(...)` for every key. If both the key and the value needs to be iterated on, `Map.entrySet()` is a more efficient solution as it doesn't require O(n) Map lookups.
Loading
Please register or sign in to comment