Skip to content

Commit

Permalink
remove redundant var
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchia committed May 27, 2024
1 parent 46b45f0 commit 0baf06c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/unfold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,14 +430,13 @@ export class FilterFileTreeBrowserModel extends FilterFileBrowserModel {
set path(value: string) {
const pathChanged = this.pathChanged as Signal<this, IChangedArgs<string>>;
const oldValue = this._path;
const newValue = value;

this._path = value;

pathChanged.emit({
name: 'path',
oldValue,
newValue
newValue: value
});
}

Expand Down

0 comments on commit 0baf06c

Please sign in to comment.