Skip to content

Commit 5bdc6ab

Browse files
committed
Cleanup space formatting
1 parent e21f8c0 commit 5bdc6ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/features/DebugSession.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ export class DebugSessionFeature extends LanguageClientConsumer
378378
// Ensure the .NET session stops before the PowerShell session so that the .NET debug session doesn't emit an error about the process unexpectedly terminating.
379379
let tempConsoleDotnetAttachSession: DebugSession;
380380
const startDebugEvent = debug.onDidStartDebugSession(dotnetAttachSession => {
381-
if (dotnetAttachSession.configuration.name != dotnetAttachConfig.name) {return;}
381+
if (dotnetAttachSession.configuration.name != dotnetAttachConfig.name) { return; }
382382

383383
// Makes the event one-time
384384
// HACK: This seems like you would be calling a method on a variable not assigned yet, but it does work in the flow.
@@ -389,8 +389,8 @@ export class DebugSessionFeature extends LanguageClientConsumer
389389

390390
tempConsoleDotnetAttachSession = dotnetAttachSession;
391391

392-
const stopDebugEvent = debug.onDidTerminateDebugSession( async tempConsoleSession => {
393-
if (tempConsoleDotnetAttachSession.parentSession?.id !== tempConsoleSession.id) {return;}
392+
const stopDebugEvent = debug.onDidTerminateDebugSession(async tempConsoleSession => {
393+
if (tempConsoleDotnetAttachSession.parentSession?.id !== tempConsoleSession.id) { return; }
394394

395395
// Makes the event one-time
396396
stopDebugEvent.dispose();

0 commit comments

Comments
 (0)