mbien commented on PR #5653: URL: https://github.com/apache/netbeans/pull/5653#issuecomment-1513735945
gonna have to remove `-Werror` in the two affected modules. Since `-Xlint:-this-escape` is causing an error on older JDKs. ``` jdk-20.0.0.36.1-corretto/bin/javac -Xlint:all -Xlint:-this-escape error: invalid flag: -Xlint:-this-escape Usage: javac <options> <source files> use --help for a list of possible options // https://github.com/openjdk/jdk/pull/11874 jdk-21-ea+18/bin/javac -Xlint:all -Xlint:-this-escape error: no source files ``` It is probably the better to try to fix/ignore the warning anyway instead of suppressing it in javac. -- 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
