perf: Fixing dumb mistake in RecursionUtils that was preventing the method from bailing early

This commit is contained in:
Chris Cameron
2018-10-08 15:07:07 -04:00
parent 6540ab5177
commit 015ffb2c35

View File

@@ -315,7 +315,7 @@ namespace ICD.Common.Utils
} }
if (destinationsToBeProcessed.Count == 0) if (destinationsToBeProcessed.Count == 0)
break; yield break;
} }
} }
} }