Skip to content

Commit 2e2e235

Browse files
committed
Fix: Address PR review feedback - remove redundant comment and trailing spaces
1 parent 4046187 commit 2e2e235

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Extension/src/Debugger/configurationProvider.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,9 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
360360
if (config.program) {
361361
processId = await this.findProcessByProgramName(config.program, config, token);
362362
}
363-
363+
364364
// Fall back to process picker if program wasn't specified or didn't match
365365
if (!processId) {
366-
// Show the process picker if no program is specified
367366
if (config.pipeTransport || config.useExtendedRemote) {
368367
const remoteAttachPicker: RemoteAttachPicker = new RemoteAttachPicker();
369368
processId = await remoteAttachPicker.ShowAttachEntries(config);
@@ -1185,7 +1184,7 @@ export class DebugConfigurationProvider implements vscode.DebugConfigurationProv
11851184
}
11861185

11871186
const programBaseName: string = path.basename(programPath);
1188-
1187+
11891188
// Get the process list using the same logic as interactive attach
11901189
const attachItemsProvider: AttachItemsProvider = NativeAttachItemsProviderFactory.Get();
11911190
const processes: AttachItem[] = await attachItemsProvider.getAttachItems(token);

0 commit comments

Comments
 (0)