提交 cb0c7523 编写于 作者: S Sandeep Somavarapu

remove sync extensions support

上级 f73c1139
......@@ -19,7 +19,6 @@ export interface IRemoteAgentEnvironment {
userHome: URI;
extensions: IExtensionDescription[];
os: OperatingSystem;
syncExtensions: boolean;
}
export interface RemoteAgentConnectionContext {
......
......@@ -28,7 +28,6 @@ export interface IRemoteAgentEnvironmentDTO {
userHome: UriComponents;
extensions: IExtensionDescription[];
os: platform.OperatingSystem;
syncExtensions: boolean;
}
export class RemoteExtensionEnvironmentChannelClient {
......@@ -54,8 +53,7 @@ export class RemoteExtensionEnvironmentChannelClient {
globalStorageHome: URI.revive(data.globalStorageHome),
userHome: URI.revive(data.userHome),
extensions: data.extensions.map(ext => { (<any>ext).extensionLocation = URI.revive(ext.extensionLocation); return ext; }),
os: data.os,
syncExtensions: data.syncExtensions
os: data.os
};
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册