We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b1b4d commit 5764b82Copy full SHA for 5764b82
vscode-extensions/commons-vscode/src/launch-util.ts
@@ -69,9 +69,7 @@ function isCheckingJVM(wsOpts : VSCode.WorkspaceConfiguration): boolean {
69
if (!wsOpts) {
70
return true;
71
}
72
- const checkJvm: boolean = wsOpts.get("checkJVM");
73
- console.log(`Check JVM: ${checkJvm}`);
74
- return checkJvm;
+ return wsOpts.get("checkJVM");
75
76
77
function getUserDefinedJvmArgs(wsOpts : VSCode.WorkspaceConfiguration) : string[] {
0 commit comments