Skip to content

Commit

Permalink
Improve code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasvajk committed Nov 11, 2024
1 parent fe62900 commit 46f1688
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private static ExitCode RunBinaryLogAnalysis(Stopwatch stopwatch, Options option
{
case ExitCode.Ok:
case ExitCode.Errors:
allFailed &= false;
allFailed = false;
break;
case ExitCode.Failed:
break;
Expand Down Expand Up @@ -209,11 +209,11 @@ static bool filter(CompilerCall compilerCall)
switch (exit)
{
case ExitCode.Ok:
allFailed &= false;
allFailed = false;
logger.LogInfo($" Compilation {diagnosticName} succeeded");
break;
case ExitCode.Errors:
allFailed &= false;
allFailed = false;
logger.LogWarning($" Compilation {diagnosticName} had errors");
break;
case ExitCode.Failed:
Expand Down

0 comments on commit 46f1688

Please sign in to comment.