Skip to content

Commit

Permalink
Remove the deprecated debug parameters from the launching connector (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
testforstephen authored Jul 19, 2024
1 parent e06a1b6 commit 24c61a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private static String[] constructLaunchCommand(Map<String, ? extends Argument> l

StringBuilder execString = new StringBuilder();
execString.append("\"" + javaHome + slash + "bin" + slash + javaExec + "\"");
execString.append(" -Xdebug -Xnoagent -Djava.compiler=NONE");
execString.append(" -Djava.compiler=NONE");
execString.append(" -Xrunjdwp:transport=dt_socket,address=" + address + ",server=n,suspend=" + (suspend ? "y" : "n"));
if (javaOptions != null) {
execString.append(" " + javaOptions);
Expand Down

0 comments on commit 24c61a7

Please sign in to comment.