mirror of
https://github.com/oliverbooth/fdup.git
synced 2024-12-04 18:48:48 +00:00
style: reduce redundant nesting
This commit is contained in:
parent
16eb21e879
commit
dd683c2bf3
@ -33,17 +33,17 @@ internal sealed class ListCommand : AsyncCommand<ListSettings>
|
||||
{
|
||||
int fileCount = files.Count;
|
||||
|
||||
if (fileCount > 1)
|
||||
{
|
||||
duplicates += fileCount;
|
||||
AnsiConsole.MarkupLineInterpolated($"Found [cyan]{fileCount}[/] identical files");
|
||||
AnsiConsole.MarkupLineInterpolated($"SHA512 [green]{hash}[/]:");
|
||||
if (fileCount <= 1)
|
||||
continue;
|
||||
|
||||
foreach (FileInfo file in files)
|
||||
AnsiConsole.MarkupLineInterpolated($"- {file.FullName}");
|
||||
duplicates += fileCount;
|
||||
AnsiConsole.MarkupLineInterpolated($"Found [cyan]{fileCount}[/] identical files");
|
||||
AnsiConsole.MarkupLineInterpolated($"{settings.Algorithm.Humanize()} [green]{hash}[/]:");
|
||||
|
||||
AnsiConsole.WriteLine();
|
||||
}
|
||||
foreach (FileInfo file in files)
|
||||
AnsiConsole.MarkupLineInterpolated($"- {file.FullName}");
|
||||
|
||||
AnsiConsole.WriteLine();
|
||||
}
|
||||
|
||||
if (duplicates == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user