sdedic commented on a change in pull request #313: [NETBEANS-194] Don't return
NULL from ShellProjectUtils#launchVMOptions and compilerPathOptions
URL: https://github.com/apache/incubator-netbeans/pull/313#discussion_r158743483
##########
File path:
jshell.support/src/org/netbeans/modules/jshell/project/ShellProjectUtils.java
##########
@@ -348,9 +327,8 @@ public static ClassPath projecRuntimeClassPath(Project
project) {
);
boolean modular = isModularProject(project, false);
if (exportMods.isEmpty() || !modular) {
- return null;
+ return result;
Review comment:
Mark the method with @NonNull
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
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