Skip to content

Commit a1fe6ff

Browse files
committed
linter
1 parent c573461 commit a1fe6ff

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Extension/src/Debugger/configurationProvider.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
390390
return `${localize("build.and.debug.active.file", 'build and debug active file')}`;
391391
}
392392

393-
private isClConfiguration(configurationLabel: string) : boolean{
394-
return configurationLabel.startsWith("C/C++: cl.exe")? true : false;
393+
private isClConfiguration(configurationLabel: string): boolean {
394+
return configurationLabel.startsWith("C/C++: cl.exe") ? true : false;
395395
}
396396

397397
private showErrorClNotAvailable(configurationLabel: string): boolean {
@@ -608,7 +608,6 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
608608
// In case of singleFile, remove the preLaunch task from the debug configuration and run it here instead.
609609
await cppBuildTaskProvider.runBuildTask(configuration.preLaunchTask);
610610
DebugConfigurationProvider.recentBuildTaskLableStr = configuration.preLaunchTask;
611-
612611
}
613612
} catch (errJS) {
614613
const e: Error = errJS as Error;

0 commit comments

Comments
 (0)