Skip to content

Commit

Permalink
#33077: Small layout change
Browse files Browse the repository at this point in the history
  • Loading branch information
janssen-tiobe committed Oct 31, 2023
1 parent 07c1750 commit 768f469
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
3 changes: 0 additions & 3 deletions src/tics/api_helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 768f469

Please sign in to comment.