We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2011ad4 commit c92b7a5Copy full SHA for c92b7a5
1 file changed
src/main/wrapper/CxWrapper.ts
@@ -8,7 +8,6 @@ import * as os from "os";
8
import CxBFL from "../bfl/CxBFL";
9
import {CxInstaller} from "../osinstaller/CxInstaller";
10
import {Semaphore} from "async-mutex";
11
-import {HttpClient} from "../client/HttpClient";
12
import {AstClient} from "../client/AstClient";
13
14
@@ -20,7 +19,7 @@ export class CxWrapper {
20
19
config: CxConfig;
21
cxInstaller: CxInstaller;
22
private constructor(cxScanConfig: CxConfig, logFilePath?: string) {
23
- this.cxInstaller = new CxInstaller(process.platform, new AstClient(new HttpClient()));
+ this.cxInstaller = new CxInstaller(process.platform, new AstClient());
24
this.config = new CxConfig();
25
getLoggerWithFilePath(logFilePath)
26
if (cxScanConfig.apiKey) {
0 commit comments