remove one more public

This commit is contained in:
Simon Siefke
2023-07-27 17:16:00 +02:00
parent 859c9ec68d
commit 92a18defce
+1 -1
View File
@@ -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);