You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2020/04/18 17:06:54 UTC

[GitHub] [netbeans] matthiasblaesing commented on a change in pull request #2080: NETBEANS-4176-Unescape javadoc title after parsing

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 &amp;
+                            // 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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists