Skip to content

Commit

Permalink
lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Jun 5, 2023
1 parent 924452a commit 2b7e87f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ export class GDBDebugSession extends LoggingDebugSession {
}
catch (e) {
this.handleMsg('stderr', `Failed to start live-monitor-gdb session. Error: ${e}\n`);
};
}
}
}
}
Expand Down Expand Up @@ -2514,7 +2514,7 @@ export class GDBDebugSession extends LoggingDebugSession {
const frame = await this.miDebugger.getFrame(threadId, frameId);
file = getPathRelative(this.args.cwd, frame?.file || '');
}
catch (_e) {
catch () {
// Do Nothing. If you hit step/next really really fast, this can fail our/gdb/gdb-server/vscode are out of synch.
// Side effect is statics won't show up but only during the fast transitions.
// Objective is just not to crash
Expand Down

0 comments on commit 2b7e87f

Please sign in to comment.