Skip to content

Commit c14fa63

Browse files
committed
Remove resolveLibraryPath method
1 parent 7554c41 commit c14fa63

File tree

1 file changed

+0
-23
lines changed
  • extensions/ql-vscode/src/codeql-cli

1 file changed

+0
-23
lines changed

extensions/ql-vscode/src/codeql-cli/cli.ts

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -720,29 +720,6 @@ export class CodeQLCliServer implements Disposable {
720720
);
721721
}
722722

723-
/**
724-
* Resolve the library path and dbscheme for a query.
725-
* @param workspaces The current open workspaces
726-
* @param queryPath The path to the query
727-
*/
728-
async resolveLibraryPath(
729-
workspaces: string[],
730-
queryPath: string,
731-
silent = false,
732-
): Promise<QuerySetup> {
733-
const subcommandArgs = [
734-
"--query",
735-
queryPath,
736-
...this.getAdditionalPacksArg(workspaces),
737-
];
738-
return await this.runJsonCodeQlCliCommand<QuerySetup>(
739-
["resolve", "library-path"],
740-
subcommandArgs,
741-
"Resolving library paths",
742-
{ silent },
743-
);
744-
}
745-
746723
/**
747724
* Resolves the language for a query.
748725
* @param queryUri The URI of the query

0 commit comments

Comments
 (0)