Clarify name of function

This commit is contained in:
Koen Vlaswinkel 2024-05-02 10:01:11 +02:00
parent 757fcd3d21
commit 1de9b371a1
3 changed files with 7 additions and 7 deletions

View file

@ -122,7 +122,7 @@ function areAllRunsUnique(sarifObjects: SarifFile[]): boolean {
return true;
}
async function showCombineSarifFilesDeprecationWarning(
async function shouldShowCombineSarifFilesDeprecationWarning(
sarifObjects: util.SarifFile[],
features: Features,
githubVersion: GitHubVersion,
@ -178,7 +178,7 @@ async function combineSarifFilesUsingCLI(
);
if (
await showCombineSarifFilesDeprecationWarning(
await shouldShowCombineSarifFilesDeprecationWarning(
sarifObjects,
features,
gitHubVersion,
@ -241,7 +241,7 @@ async function combineSarifFilesUsingCLI(
);
if (
await showCombineSarifFilesDeprecationWarning(
await shouldShowCombineSarifFilesDeprecationWarning(
sarifObjects,
features,
gitHubVersion,