private void addNewTags(Set<Tag> newTags, Set<Tag> orginalTags) { SetView<Tag> addedTags = Sets.difference(newTags, orginalTags); logger.debug("addedTags size : {}", addedTags.size()); for (Tag tag : addedTags) { tag.tagged(); } }
private Tag createTaggedTag(String tagName) { Tag tag = new Tag(tagName); tag.tagged(); return tag; }