From c14fa633214929177274193f67f91125e8dc634f Mon Sep 17 00:00:00 2001 From: Koen Vlaswinkel Date: Thu, 21 Dec 2023 12:20:31 +0100 Subject: [PATCH] Remove resolveLibraryPath method --- extensions/ql-vscode/src/codeql-cli/cli.ts | 23 ---------------------- 1 file changed, 23 deletions(-) diff --git a/extensions/ql-vscode/src/codeql-cli/cli.ts b/extensions/ql-vscode/src/codeql-cli/cli.ts index 1628a4330..2e68ae9e6 100644 --- a/extensions/ql-vscode/src/codeql-cli/cli.ts +++ b/extensions/ql-vscode/src/codeql-cli/cli.ts @@ -720,29 +720,6 @@ export class CodeQLCliServer implements Disposable { ); } - /** - * Resolve the library path and dbscheme for a query. - * @param workspaces The current open workspaces - * @param queryPath The path to the query - */ - async resolveLibraryPath( - workspaces: string[], - queryPath: string, - silent = false, - ): Promise { - const subcommandArgs = [ - "--query", - queryPath, - ...this.getAdditionalPacksArg(workspaces), - ]; - return await this.runJsonCodeQlCliCommand( - ["resolve", "library-path"], - subcommandArgs, - "Resolving library paths", - { silent }, - ); - } - /** * Resolves the language for a query. * @param queryUri The URI of the query