mbien commented on PR #9396: URL: https://github.com/apache/netbeans/pull/9396#issuecomment-4515054384
have you tried: ``` ret = new JarFile(file, false); ``` -> ``` ret = new JarFile(file, false, JarFile.OPEN_READ, JarFile.runtimeVersion()); ``` and checked if the packages show up automatically when the jdk api is used? This will open the jar in multi release mode, default is jdk8 mode. -- 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
