Removed unprofessional comment

What was I even thinking?
This commit is contained in:
MarcUs7i 2024-12-06 07:41:03 +01:00
parent cb68117d83
commit 3c848945aa

View file

@ -98,11 +98,7 @@ public sealed class Marathon
}
//check if the participant is the first or last
int result = _head.Data?.CompareTo(participant) ?? 0; // why ?? are you confused? you sure its not null??
// haha, you sure??
// I'm sure, I'm sure
// haha, okay, I trust you
// ok, i should stop talking to co-pilot now
int result = _head.Data?.CompareTo(participant) ?? 0;
// If the participant is the first or can be placed before the first
if (result <= 0)
{