mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 09:38:38 +01:00
debt - fix some leaks found by copilot (#293731)
This commit is contained in:
@@ -177,7 +177,7 @@ export class NotebookViewModel extends Disposable implements EditorFoldingStateD
|
||||
private readonly _instanceId: string;
|
||||
public readonly id: string;
|
||||
private _foldingRanges: FoldingRegions | null = null;
|
||||
private _onDidFoldingStateChanged = new Emitter<void>();
|
||||
private _onDidFoldingStateChanged = this._register(new Emitter<void>());
|
||||
readonly onDidFoldingStateChanged: Event<void> = this._onDidFoldingStateChanged.event;
|
||||
private _hiddenRanges: ICellRange[] = [];
|
||||
private _focused: boolean = true;
|
||||
|
||||
Reference in New Issue
Block a user