Code duplication cleanup after last commit

This commit is contained in:
2026-02-06 17:34:22 +01:00
parent ef09b642d6
commit f678c0fa54
2 changed files with 0 additions and 18 deletions

View File

@@ -87,14 +87,6 @@ export class Terminal {
return result;
}
getTerminalWidth(): number {
const width = this.callbacks.getWidth?.();
if(!width) { throw new Error('somehow width is undefined still after all the checks'); }
console.log(width);
return width;
}
executeCommand(input: string): void {
this.bash.updateHistory(input);
const parsed: ParsedInput = this._parseInput(input);