Changed TagLoader injection point

This commit is contained in:
Aleksey 2021-04-22 09:44:01 +03:00
parent 6487ac81c6
commit bc07b34f1c
2 changed files with 12 additions and 12 deletions

View file

@ -66,9 +66,7 @@ public class TagHelper {
endTags = TAGS_ITEM;
}
if (endTags != null) {
endTags.forEach((id, ids) -> {
apply(tagsMap.computeIfAbsent(id, key -> Tag.Builder.tag()), ids);
});
endTags.forEach((id, ids) -> apply(tagsMap.computeIfAbsent(id, key -> Tag.Builder.tag()), ids));
}
}
}