Last active
August 10, 2016 17:41
-
-
Save r-winkler/67a505b68b8f3a2957a172f1375312fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
List<Item> result = new ArrayList<>(); | |
for (Map.Entry<String,Integer> entry : accumulator.entrySet()){ | |
result.add(new Item(entry.getKey(), entry.getValue())); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment