From b388bcadafd4ec93252d5ce2fae9bce35ff133d5 Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Wed, 21 Dec 2022 08:19:27 +0000 Subject: [PATCH] Removed comment --- dist/save-only/index.js | 1 - dist/save/index.js | 1 - src/saveImpl.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/dist/save-only/index.js b/dist/save-only/index.js index 338d315..2f8d753 100644 --- a/dist/save-only/index.js +++ b/dist/save-only/index.js @@ -41149,7 +41149,6 @@ function saveImpl(stateProvider) { cacheId = yield cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); } diff --git a/dist/save/index.js b/dist/save/index.js index e6269b4..10a6548 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -41093,7 +41093,6 @@ function saveImpl(stateProvider) { cacheId = yield cache.saveCache(cachePaths, primaryKey, { uploadChunkSize: utils.getInputAsInt(constants_1.Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); } diff --git a/src/saveImpl.ts b/src/saveImpl.ts index 6c4e904..d8d7674 100644 --- a/src/saveImpl.ts +++ b/src/saveImpl.ts @@ -56,7 +56,6 @@ async function saveImpl(stateProvider: IStateProvider): Promise { uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize) }); - // -1 refers to cache not saved if (cacheId != -1) { core.info(`Cache saved with key: ${primaryKey}`); }