}
// Wrap values in list of impact
List<CoderImpact> list = new ArrayList<CoderImpact>();
for (Map.Entry<String, Integer> e : map.entrySet()) {
list.add(new CoderImpact(e.getKey(), e.getValue(), count));
}
// Sort
Collections.sort(list, new CoderImpactComparator());