Commit c4013814 authored by Tagir Valeev's avatar Tagir Valeev
Browse files

ExternalAnnotationsManagerImpl: minor fix after merge PR #870

parent 7bd69edd
Branches unavailable Tags unavailable
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -198,7 +198,7 @@ public class ExternalAnnotationsManagerImpl extends ReadableExternalAnnotationsM
XmlTag rootTag = extractRootTag(annotationsFile);
TreeMap<String, List<ExternalAnnotation>> ownerToAnnotations = StreamEx.of(annotations)
.mapToEntry(annotation -> StringUtil.escapeXml(getExternalName(annotation.getOwner(), false)), Function.identity())
.mapToEntry(annotation -> StringUtil.escapeXml(getExternalName(annotation.getOwner())), Function.identity())
.distinct()
.grouping(() -> new TreeMap<>(Comparator.nullsFirst(Comparator.naturalOrder())));
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment