Skip to content

Instantly share code, notes, and snippets.

@rkroll
Created October 25, 2011 20:18
Show Gist options
  • Save rkroll/1314110 to your computer and use it in GitHub Desktop.
Save rkroll/1314110 to your computer and use it in GitHub Desktop.
Instantiate a Google MultiMap
Multimaps.newListMultimap(new HashMap<String, Collection<String>>(), new Supplier<List<String>>() {
@Override
public List<String> get() {
return new ArrayList<String>();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment