Skip to content

Commit b3709fd

Browse files
committed
fix lint by removing semicolon
1 parent 6fbfe33 commit b3709fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/wrapper/CxWrapperFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface ICxWrapperFactory {
88

99
class CxWrapperFactory implements ICxWrapperFactory {
1010
async createWrapper(cxScanConfig: CxConfig, logFilePath?: string): Promise<CxWrapper> {
11-
return await CxWrapper.getInstance(cxScanConfig, logFilePath);;
11+
return await CxWrapper.getInstance(cxScanConfig, logFilePath);
1212
}
1313
}
1414

0 commit comments

Comments
 (0)