Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Mar 28, 2024
1 parent 275cb2f commit 033559a
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { ITerminalOutputMatcher, ITerminalOutputMatch } from 'vs/platform/termin
// Importing types is safe in any layer
// eslint-disable-next-line local/code-import-patterns
import type { IBuffer, IBufferLine, Terminal } from '@xterm/headless';
import { URI } from 'vs/base/common/uri';

export interface ITerminalCommandProperties {
command: string;
Expand Down Expand Up @@ -202,13 +201,6 @@ export class TerminalCommand implements ITerminalCommand {
getCommandRowCount(): number {
return getCommandRowCount(this);
}

getCwdResource(): URI | undefined {
if (!this.cwd) {
return undefined;
}
return URI.file(this.cwd);
}
}

export interface ICurrentPartialCommand {
Expand Down

0 comments on commit 033559a

Please sign in to comment.