changed some Markups to Writelines

This commit is contained in:
nihil 2025-05-10 13:47:43 +02:00
parent b1b24593ef
commit 95e53b00ec

View File

@ -153,11 +153,11 @@ namespace RedundancyFinderCLI
{ {
foreach (var redundancy in finder.Redundancies.Values) foreach (var redundancy in finder.Redundancies.Values)
{ {
AnsiConsole.MarkupLine($"Hash: {redundancy.Hash}"); AnsiConsole.WriteLine($"Hash: {redundancy.Hash}");
AnsiConsole.MarkupLine("Paths:"); AnsiConsole.WriteLine("Paths:");
foreach (var path in redundancy.Paths) foreach (var path in redundancy.Paths)
{ {
AnsiConsole.MarkupLine(path); AnsiConsole.WriteLine(path);
} }
AnsiConsole.WriteLine(); AnsiConsole.WriteLine();
} }