neilcsmith-net commented on code in PR #7776:
URL: https://github.com/apache/netbeans/pull/7776#discussion_r1771472255
##########
java/java.file.launcher/src/org/netbeans/modules/java/file/launcher/actions/SingleJavaSourceRunActionProvider.java:
##########
@@ -81,9 +108,9 @@ public boolean isActionEnabled(String command, Lookup
context) throws IllegalArg
return fileObject != null;
}
- final LaunchProcess invokeActionHelper (InputOutput io, String command,
FileObject fo, ExplicitProcessParameters params) {
+ final LaunchProcess invokeActionHelper (String command, FileObject fo,
ExplicitProcessParameters params) {
JPDAStart start = ActionProvider.COMMAND_DEBUG_SINGLE.equals(command) ?
- new JPDAStart(io, fo) : null;
+ new JPDAStart(null, fo) : null;
Review Comment:
eg.
https://github.com/apache/netbeans/blob/master/java/java.file.launcher/src/org/netbeans/modules/java/file/launcher/actions/JPDAStart.java#L126
--
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