diff --git a/src/common/buffer/Buffer.ts b/src/common/buffer/Buffer.ts index 4890e7c2..5ecf19bb 100644 --- a/src/common/buffer/Buffer.ts +++ b/src/common/buffer/Buffer.ts @@ -278,13 +278,6 @@ export class Buffer implements IBuffer { return false; } - private _forceMemoryCleanup(): void { - this._memoryCleanupQueue.clear(); - for (let i = 0; i < this.lines.length; i++) { - this.lines.get(i)!.cleanupMemory(); - } - } - private get _isReflowEnabled(): boolean { return this._hasScrollback && !this._optionsService.rawOptions.windowsMode; }