Skip to content

Instantly share code, notes, and snippets.

@elsennov
Last active January 24, 2016 07:08
Show Gist options
  • Save elsennov/ecc09a444f2c9010e506 to your computer and use it in GitHub Desktop.
Save elsennov/ecc09a444f2c9010e506 to your computer and use it in GitHub Desktop.
private void addTagToChildFragmentTagsMap(String childFragmentTag) {
List<String> childFragmentTags = CHILD_FRAGMENT_TAGS_MAP.get(mParentId);
if (childFragmentTags == null) {
List<String> initialChildFragmentTags = new ArrayList<>();
initialChildFragmentTags.add(childFragmentTag);
CHILD_FRAGMENT_TAGS_MAP.put(mParentId, initialChildFragmentTags);
} else {
childFragmentTags.add(childFragmentTag);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment