Skip to content

Commit 0fb2b79

Browse files
committed
running linter
1 parent 7e718a2 commit 0fb2b79

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/views/live-watch/live-watch.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
351351
await vscode.commands.executeCommand('memory-inspector.show-variable', args);
352352
}
353353

354-
private async handleEnablePeriodicUpdate(): Promise<void> {
354+
private async handleEnablePeriodicUpdate(): Promise<void> {
355355
const state = this._activeSession ? this.sessionLiveWatchStates.get(this._activeSession.session.id) : undefined;
356356
if (state) {
357357
state.periodicUpdateEnabled = true;
@@ -370,7 +370,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
370370
await vscode.commands.executeCommand('setContext', 'liveWatch.periodicUpdateEnabled', false);
371371
logger.info('Live Watch: Periodic Update disabled');
372372
}
373-
373+
374374
private async evaluateInitialExpression(expression: string): Promise<LiveWatchValue> {
375375
const response: LiveWatchValue = { result: '', variablesReference: 0 };
376376
if (!this._activeSession) {
@@ -410,7 +410,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
410410
node.value.type = result.type ?? '';
411411
return node.value;
412412
}
413-
413+
414414
private async handleSetValueCommand(node: LiveWatchNode) {
415415
if (!node) {
416416
return;

0 commit comments

Comments
 (0)