mbien commented on issue #7720: URL: https://github.com/apache/netbeans/issues/7720#issuecomment-2325105211
https://github.com/apache/netbeans/blob/33d11303269b338a95e47681e3a1f66d704fd09d/ide/projectui/src/org/netbeans/modules/project/ui/actions/OpenSubprojects.java#L159-L164 this would be the entry point for the lazy init logic. I checked and all UI calls are made on EDT. A few fields like `initialized` should be changed to `volatile` there, since the `subProjects` Set is initialized in the background, but worst what could happen is that this gets initialized multiple times - this would not explain why item selection is not working. -- 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
