Remove unused properties from VersionOutput

This commit is contained in:
Michael B. Gale 2023-10-04 15:51:26 +01:00
parent bb67eddd77
commit 49b94f1a2d
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
6 changed files with 2 additions and 42 deletions

View file

@ -213,15 +213,7 @@ export interface CodeQL {
}
export interface VersionOutput {
productName: string;
vendor: string;
version: string;
sha: string;
branches: string[];
copyright: string;
unpackedLocation: string;
configFileLocation: string;
configFileFound: boolean;
features?: { [name: string]: boolean };
}
@ -458,14 +450,6 @@ export function setCodeQL(partialCodeql: Partial<CodeQL>): CodeQL {
() =>
new Promise((resolve) =>
resolve({
productName: "CodeQL",
vendor: "GitHub",
sha: "",
branches: [],
copyright: "",
unpackedLocation: "",
configFileLocation: "",
configFileFound: false,
version: "1.0.0",
}),
),