Skip to content

Commit e282742

Browse files
authored
remove unused property (#174236)
1 parent d345968 commit e282742

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/vs/platform/remote/common/remoteAgentEnvironment.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export interface IRemoteAgentEnvironment {
1313
appRoot: URI;
1414
settingsPath: URI;
1515
logsPath: URI;
16-
extensionsPath: URI;
1716
extensionHostLogsPath: URI;
1817
globalStorageHome: URI;
1918
workspaceStorageHome: URI;

src/vs/server/node/remoteAgentEnvironmentImpl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ export class RemoteAgentEnvironmentChannel implements IServerChannel {
298298
appRoot: URI.file(this._environmentService.appRoot),
299299
settingsPath: this._environmentService.machineSettingsResource,
300300
logsPath: URI.file(this._environmentService.logsPath),
301-
extensionsPath: URI.file(this._environmentService.extensionsPath!),
302301
extensionHostLogsPath: URI.file(join(this._environmentService.logsPath, `exthost${RemoteAgentEnvironmentChannel._namePool++}`)),
303302
globalStorageHome: this._userDataProfilesService.defaultProfile.globalStorageHome,
304303
workspaceStorageHome: this._environmentService.workspaceStorageHome,

src/vs/workbench/services/remote/common/remoteAgentEnvironmentChannel.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export interface IRemoteAgentEnvironmentDTO {
4343
appRoot: UriComponents;
4444
settingsPath: UriComponents;
4545
logsPath: UriComponents;
46-
extensionsPath: UriComponents;
4746
extensionHostLogsPath: UriComponents;
4847
globalStorageHome: UriComponents;
4948
workspaceStorageHome: UriComponents;
@@ -70,7 +69,6 @@ export class RemoteExtensionEnvironmentChannelClient {
7069
appRoot: URI.revive(data.appRoot),
7170
settingsPath: URI.revive(data.settingsPath),
7271
logsPath: URI.revive(data.logsPath),
73-
extensionsPath: URI.revive(data.extensionsPath),
7472
extensionHostLogsPath: URI.revive(data.extensionHostLogsPath),
7573
globalStorageHome: URI.revive(data.globalStorageHome),
7674
workspaceStorageHome: URI.revive(data.workspaceStorageHome),

0 commit comments

Comments
 (0)