From f8342573c638dcbe3f3b381415663acf05a558e4 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Mon, 26 Jan 2026 22:18:38 +0100 Subject: [PATCH] remove unused resources (#290540) --- .../profiles/agent-sessions.code-profile | 28 ------------------- .../common/userDataProfileIpc.ts | 5 ---- 2 files changed, 33 deletions(-) delete mode 100644 resources/profiles/agent-sessions.code-profile diff --git a/resources/profiles/agent-sessions.code-profile b/resources/profiles/agent-sessions.code-profile deleted file mode 100644 index 24ce160c3ac..00000000000 --- a/resources/profiles/agent-sessions.code-profile +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Agent Sessions", - "icon": "copilot", - "settings": { - "workbench.statusBar.visible": false, - "workbench.activityBar.location": "top", - "workbench.sideBar.location": "right", - "workbench.secondarySideBar.forceMaximized": true, - "chat.restoreLastPanelSession": true, - "workbench.startupEditor": "none", - "workbench.editor.restoreEditors": false, - "chat.agentsControl.enabled": true, - "chat.unifiedAgentsBar.enabled": true, - "files.autoSave": "afterDelay", - "window.title": "Agent Sessions", - "workbench.editor.showTabs": "single", - "chat.agentsControl.clickBehavior": "focus", - "workbench.tips.enabled": false, - "chat.agent.maxRequests": 1000, - "workbench.layoutControl.type": "toggles", - "inlineChat.affordance": "editor", - "inlineChat.renderMode": "hover", - "github.copilot.chat.claudeCode.enabled": true, - "github.copilot.chat.languageContext.typescript.enabled": true, - "diffEditor.renderSideBySide": false, - "diffEditor.hideUnchangedRegions.enabled": true - } -} diff --git a/src/vs/platform/userDataProfile/common/userDataProfileIpc.ts b/src/vs/platform/userDataProfile/common/userDataProfileIpc.ts index fa320aa439f..cdb0b1c64bd 100644 --- a/src/vs/platform/userDataProfile/common/userDataProfileIpc.ts +++ b/src/vs/platform/userDataProfile/common/userDataProfileIpc.ts @@ -94,11 +94,6 @@ export class UserDataProfilesService extends Disposable implements IUserDataProf return reviveProfile(result, this.profilesHome.scheme); } - async createSystemProfile(id: string): Promise { - const result = await this.channel.call>('createSystemProfile', [id]); - return reviveProfile(result, this.profilesHome.scheme); - } - async createTransientProfile(workspaceIdentifier?: IAnyWorkspaceIdentifier): Promise { const result = await this.channel.call>('createTransientProfile', [workspaceIdentifier]); return reviveProfile(result, this.profilesHome.scheme);