diff --git a/src/common/services/BufferService.ts b/src/common/services/BufferService.ts index 962d582d..528d2674 100644 --- a/src/common/services/BufferService.ts +++ b/src/common/services/BufferService.ts @@ -32,7 +32,7 @@ export class BufferService extends Disposable implements IBufferService { /** An IBufferline to clone/copy from for new blank lines */ private _cachedBlankLine: IBufferLine | undefined; - constructor(@IOptionsService public optionsService: IOptionsService) { + constructor(@IOptionsService optionsService: IOptionsService) { super(); this.cols = Math.max(optionsService.rawOptions.cols || 0, MINIMUM_COLS); this.rows = Math.max(optionsService.rawOptions.rows || 0, MINIMUM_ROWS);