Skip to content

Commit 24c61a7

Browse files
Remove the deprecated debug parameters from the launching connector (#562)
1 parent e06a1b6 commit 24c61a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.plugin/src/main/java/com/microsoft/java/debug/plugin/internal/AdvancedLaunchingConnector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ private static String[] constructLaunchCommand(Map<String, ? extends Argument> l
195195

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

0 commit comments

Comments
 (0)