diff --git a/src/integrations/terminal/Terminal.ts b/src/integrations/terminal/Terminal.ts index 01e6ccfcc8..7233b275b2 100644 --- a/src/integrations/terminal/Terminal.ts +++ b/src/integrations/terminal/Terminal.ts @@ -6,7 +6,6 @@ export class Terminal { public terminal: vscode.Terminal public busy: boolean public id: number - private stream?: AsyncIterable public running: boolean private streamClosed: boolean public process?: TerminalProcess @@ -40,13 +39,6 @@ export class Terminal { } } - /** - * Gets the terminal's stream - */ - public getStream(): AsyncIterable | undefined { - return this.stream - } - /** * Checks if the stream is closed */ @@ -60,8 +52,6 @@ export class Terminal { * @throws Error if process is undefined when a stream is provided */ public setActiveStream(stream: AsyncIterable | undefined): void { - this.stream = stream - if (stream) { // New stream is available if (!this.process) {