Address PR comments

This commit is contained in:
Pine Wu
2016-09-13 14:21:45 -07:00
parent 2966990272
commit 9da873d64f

View File

@@ -11,8 +11,6 @@ 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;
@@ -20,7 +18,6 @@ export class ExtHostTerminal implements vscode.Terminal {
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);
}