SCM - delete scmInputBoxValueProvider proposal (#199778)

This commit is contained in:
Ladislau Szomoru
2023-12-01 17:54:59 +01:00
committed by GitHub
parent 7d76eaf8bd
commit c5874782c5
11 changed files with 4 additions and 164 deletions

View File

@@ -1170,10 +1170,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
},
createSourceControl(id: string, label: string, rootUri?: vscode.Uri) {
return extHostSCM.createSourceControl(extension, id, label, rootUri);
},
registerSourceControlInputBoxValueProvider(sourceControlId: string, provider: vscode.SourceControlInputBoxValueProvider): vscode.Disposable {
checkProposedApiEnabled(extension, 'scmInputBoxValueProvider');
return extHostSCM.registerSourceControlInputBoxValueProvider(extension, sourceControlId, provider);
}
};