uschindler opened a new issue, #15685: URL: https://github.com/apache/lucene/issues/15685
While reviewing another issue regarding linkedlist, I noticed the following: https://github.com/apache/lucene/blob/6d9917b13c83bee3daae1c53f810dc2779730e9b/gradle/validation/forbidden-apis/all/defaults.txt#L46 Basically we can't fix forbiddenapis here, but the way to make this work is just disallowing to instantiate a HashTable: ``` java.util.Hashtable#<init>(**) @ Use more modern java.util.HashMap as it is not synchronized ``` -- 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]
