Skip to content

Commit

Permalink
Adding a few more override specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Apr 20, 2021
1 parent 65273f8 commit 909f03e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class NotebookStatusBarController extends Disposable implements INotebook
}
}

dispose(): void {
override dispose(): void {
this._visibleCells.forEach(cell => cell.dispose());
this._visibleCells.clear();
}
Expand Down Expand Up @@ -130,7 +130,7 @@ class CellStatusBarHelper extends Disposable {
this._currentItemIds = newIds;
}

dispose() {
override dispose() {
super.dispose();

this._notebookViewModel.deltaCellStatusBarItems(this._currentItemIds, [{ handle: this._cell.handle, items: [] }]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ suite('Workbench - Test Results Service', () => {
};

class TestLiveTestResult extends LiveTestResult {
public setAllToState(state: TestResultState, taskId: string, when: (task: ITestTaskState, item: TestResultItem) => boolean) {
public override setAllToState(state: TestResultState, taskId: string, when: (task: ITestTaskState, item: TestResultItem) => boolean) {
super.setAllToState(state, taskId, when);
}
}
Expand Down

0 comments on commit 909f03e

Please sign in to comment.