From 768f4692fff48ce422b84df91707aa723e524011 Mon Sep 17 00:00:00 2001 From: janssen <118828444+janssen-tiobe@users.noreply.github.com> Date: Tue, 31 Oct 2023 15:22:19 +0100 Subject: [PATCH] #33077: Small layout change --- dist/index.js | 3 --- src/tics/api_helper.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 1ae69860..d38e5f10 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1437,9 +1437,6 @@ const configuration_1 = __nccwpck_require__(5527); * @param analysis the output of the TICS analysis run. */ function cliSummary(analysis) { - if (analysis.errorList.length > 0 || (configuration_1.githubConfig.debugger && analysis.warningList.length > 0)) { - logger_1.logger.info(''); //empty line for better readability - } analysis.errorList.forEach(error => logger_1.logger.error(error)); if (configuration_1.githubConfig.debugger) { analysis.warningList.forEach(warning => logger_1.logger.warning(warning)); diff --git a/src/tics/api_helper.ts b/src/tics/api_helper.ts index 8ba6c19e..8cfe4806 100644 --- a/src/tics/api_helper.ts +++ b/src/tics/api_helper.ts @@ -7,9 +7,6 @@ import { Analysis } from '../helper/interfaces'; * @param analysis the output of the TICS analysis run. */ export function cliSummary(analysis: Analysis): void { - if (analysis.errorList.length > 0 || (githubConfig.debugger && analysis.warningList.length > 0)) { - logger.info(''); //empty line for better readability - } analysis.errorList.forEach(error => logger.error(error)); if (githubConfig.debugger) { analysis.warningList.forEach(warning => logger.warning(warning));