Skip to content

Commit

Permalink
Remove no longer needed IDisposable
Browse files Browse the repository at this point in the history
Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
krassowski and fcollonval authored Mar 20, 2024
1 parent 237af08 commit 2710948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docmanager/src/recents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { IRecentsManager, RecentDocument } from './tokens';
/**
* Manager for recently opened and closed documents.
*/
export class RecentsManager implements IRecentsManager, IDisposable {
export class RecentsManager implements IRecentsManager {
constructor(options: RecentsManager.IOptions) {
this._saveDebouncer = new Debouncer(this._save.bind(this), 500);
this._stateDB = options.stateDB;
Expand Down

0 comments on commit 2710948

Please sign in to comment.