Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueCyro committed Jul 1, 2024
1 parent 526af28 commit 1b3cbf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CherryPicker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ public void PerformMatch(string query, int resultCount = 10)



// A bit hot and can cause minor hitches if care isn't taken. Avoiding branch logic if possible
// The for loops are a bit hot and can cause minor
// hitches if care isn't taken. Avoiding branch logic if possible

// Check if there's actually a scope, because if there isn't, a slightly more efficient loop can be used
if (string.IsNullOrEmpty(Scope))
{
for (int i = 0; i < workerCount; i++)
Expand Down

0 comments on commit 1b3cbf2

Please sign in to comment.