File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 840
840
"title" : " CodeQL: Choose Database from Folder"
841
841
},
842
842
{
843
- "command" : " codeQL.chooseMultipleDatabaseFolder " ,
843
+ "command" : " codeQL.chooseDatabaseFoldersParent " ,
844
844
"title" : " CodeQL: Choose Folder to import all databases contained in it"
845
845
},
846
846
{
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export type LanguageSelectionCommands = {
211
211
export type LocalDatabasesCommands = {
212
212
// Command palette commands
213
213
"codeQL.chooseDatabaseFolder" : ( ) => Promise < void > ;
214
- "codeQL.chooseMultipleDatabaseFolder " : ( ) => Promise < void > ;
214
+ "codeQL.chooseDatabaseFoldersParent " : ( ) => Promise < void > ;
215
215
"codeQL.chooseDatabaseArchive" : ( ) => Promise < void > ;
216
216
"codeQL.chooseDatabaseInternet" : ( ) => Promise < void > ;
217
217
"codeQL.chooseDatabaseGithub" : ( ) => Promise < void > ;
Original file line number Diff line number Diff line change @@ -269,8 +269,8 @@ export class DatabaseUI extends DisposableObject {
269
269
"codeQL.getCurrentDatabase" : this . handleGetCurrentDatabase . bind ( this ) ,
270
270
"codeQL.chooseDatabaseFolder" :
271
271
this . handleChooseDatabaseFolderFromPalette . bind ( this ) ,
272
- "codeQL.chooseMultipleDatabaseFolder " :
273
- this . handleChooseMultipleDatabaseFolderFromPalette . bind ( this ) ,
272
+ "codeQL.chooseDatabaseFoldersParent " :
273
+ this . handleChooseDatabaseFoldersParentFromPalette . bind ( this ) ,
274
274
"codeQL.chooseDatabaseArchive" :
275
275
this . handleChooseDatabaseArchiveFromPalette . bind ( this ) ,
276
276
"codeQL.chooseDatabaseInternet" :
@@ -363,7 +363,7 @@ export class DatabaseUI extends DisposableObject {
363
363
) ;
364
364
}
365
365
366
- private async handleChooseMultipleDatabaseFolderFromPalette ( ) : Promise < void > {
366
+ private async handleChooseDatabaseFoldersParentFromPalette ( ) : Promise < void > {
367
367
return withProgress (
368
368
async ( progress ) => {
369
369
await this . chooseDatabasesParentFolder ( progress ) ;
You can’t perform that action at this time.
0 commit comments