提交 9da873d6 编写于 作者: P Pine Wu

Address PR comments

上级 29669902
......@@ -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);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册