matthiasblaesing commented on PR #9207: URL: https://github.com/apache/netbeans/pull/9207#issuecomment-3930182823
And I found the second round of problems: - ByteRefs are mutable and they are mutated when a TermsEnum is iterated. I.e. if the ByteRef is to be used after the TermsEnum moves to the next term, the old ByteRef might be modified. So a defensive copy is created now. - For class member search a case insensitive match is done. That works by transforming the token stream to lowercase. The old implementation does not work anymore and needs to be replaced by the LowerCaseFilter. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- 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
