Remove console.log() call
This commit is contained in:
@@ -69,9 +69,7 @@ function isCheckingJVM(wsOpts : VSCode.WorkspaceConfiguration): boolean {
|
||||
if (!wsOpts) {
|
||||
return true;
|
||||
}
|
||||
const checkJvm: boolean = wsOpts.get("checkJVM");
|
||||
console.log(`Check JVM: ${checkJvm}`);
|
||||
return checkJvm;
|
||||
return wsOpts.get("checkJVM");
|
||||
}
|
||||
|
||||
function getUserDefinedJvmArgs(wsOpts : VSCode.WorkspaceConfiguration) : string[] {
|
||||
|
||||
Reference in New Issue
Block a user