matthiasblaesing commented on a change in pull request #2080:
NETBEANS-4176-Unescape javadoc title after parsing
URL: https://github.com/apache/netbeans/pull/2080#discussion_r410722947
##########
File path:
java/javadoc/src/org/netbeans/modules/javadoc/search/IndexBuilder.java
##########
@@ -417,6 +418,12 @@ private void handleTitleTag() throws IOException {
} else {
title = new String(buf, 0, offset - 7,
charset).trim();
}
+
+ // Unescape the title, done for JDK 11.
+ // JDK 11 title contains &
+ // NOI18N
Review comment:
The NOI18N comment does not belong here, the comment is IMHO unnecessary, as
"unescapeHTML" is pretty self-explaining.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists