Remove a print left over from debugging

fixes 631e5c37b
This commit is contained in:
YoshiRulz 2025-05-30 08:01:28 +10:00
parent 92b280a3f0
commit 2538f9e16c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 0 additions and 1 deletions

View File

@ -69,7 +69,6 @@ namespace BizHawk.Client.EmuHawk
{
var entries = ((IEnumerator<KeyValuePair<object, object/*?*/>>) lti.GetEnumerator()).AsEnumerable()
.ToArray();
Console.WriteLine(entries[0].Key.GetType().FullName);
return string.Concat(entries.All(static kvp => kvp.Key is long)
? entries.OrderBy(static kvp => (long) kvp.Key, Comparer<long>.Default)
.Select(static kvp => $"{kvp.Key}: \"{kvp.Value}\"\n")