Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Sep 13, 2016
1 parent 2966990 commit 9da873d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/vs/workbench/api/node/extHostTerminalService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ import {MainContext, MainThreadTerminalServiceShape} from './extHost.protocol';
export class ExtHostTerminal implements vscode.Terminal {

public _name: string;
public _shellPath: string;
public _shellArgs: string[];

private _id: number;
private _proxy: MainThreadTerminalServiceShape;
private _disposed: boolean;

constructor(proxy: MainThreadTerminalServiceShape, id: number, name?: string, shellPath?: string, shellArgs?: string[]) {
this._name = name;
this._shellPath = shellPath;
this._proxy = proxy;
this._id = this._proxy.$createTerminal(name, shellPath, shellArgs);
}
Expand Down

0 comments on commit 9da873d

Please sign in to comment.