in aws-codeguruprofiler-profilinggroup/src/main/java/software/amazon/codeguruprofiler/profilinggroup/TagHelper.java [151:158]
private static Set<Tag> tagsFromModel(final ResourceModel model) {
List<Tag> tags = model.getTags();
if (tags == null) {
return emptySet();
} else {
return new HashSet<>(tags);
}
}