Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Aug 7, 2024
1 parent 157d708 commit ba9db60
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/vs/workbench/contrib/debug/browser/repl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,14 +694,7 @@ export class Repl extends FilterViewPane implements IHistoryNavigationWidget {
}));

this._register(tree.onContextMenu(e => this.onContextMenu(e)));

this._register(tree.onDidChangeFindOpenState((open) => {
if (open) {
this.findIsOpen = true;
} else {
this.findIsOpen = false;
}
}));
this._register(tree.onDidChangeFindOpenState((open) => this.findIsOpen = open));

let lastSelectedString: string;
this._register(tree.onMouseClick(() => {
Expand Down

0 comments on commit ba9db60

Please sign in to comment.