Skip to content

Commit bc99db7

Browse files
authored
remove id property from ChatSessionsContribution (microsoft#264803)
remove id property from ChatSessionsContribution
1 parent 8934b59 commit bc99db7

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

src/vs/workbench/contrib/chat/browser/chatSessions.contribution.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ export class ChatSessionsService extends Disposable implements IChatSessionsServ
143143
}
144144
for (const contribution of ext.value) {
145145
const c: IChatSessionsExtensionPoint = {
146-
id: contribution.id,
147146
type: contribution.type,
148147
name: contribution.name,
149148
displayName: contribution.displayName,

src/vs/workbench/contrib/chat/common/chatSessionsService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export const enum ChatSessionStatus {
2222
}
2323

2424
export interface IChatSessionsExtensionPoint {
25-
readonly id: string; // TODO(jospicer): Deprecated. Remove
2625
readonly type: string;
2726
readonly name: string;
2827
readonly displayName: string;

0 commit comments

Comments
 (0)