clean up debug prints

This commit is contained in:
Alex
2025-09-01 01:02:27 -07:00
parent 27a82ac451
commit 0f53028972
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -116,12 +116,10 @@ public partial class Export : Panel
if ((bool)RadioExportAll.IsChecked!)
{
Console.WriteLine("Adding DB songs to rows...");
Database.Songs.ToList().ForEach((s) => Rows.Add(new ExportRow { Song = s }));
}
else
{
Console.WriteLine("Adding selections to rows...");
Selection.Selections.ToList().ForEach((s) => Rows.Add(new ExportRow { Song = s }));
}
}