Added formatting

This commit is contained in:
suneet.gupta
2023-02-16 11:26:42 +05:30
parent 79c7bd0f06
commit e58be57254

View File

@@ -179,7 +179,7 @@ public class TagsImpl implements Tags
for (Pair<NodeRef, String> pair : page)
{
Tag selectedTag = new Tag(pair.getFirst(), pair.getSecond());
selectedTag.setCount(tagsByCountMap.get(selectedTag.getTag()) == null ? 0: tagsByCountMap.get(selectedTag.getTag()));
selectedTag.setCount(tagsByCountMap.get(selectedTag.getTag()) == null ? 0 : tagsByCountMap.get(selectedTag.getTag()));
tags.add(selectedTag);
}