Fixing stupid mistake where the comparer was not being passed to the BinarySearch method

This commit is contained in:
Chris Cameron
2017-07-26 12:10:04 -04:00
parent 83902b61b6
commit a552f84dab

View File

@@ -58,7 +58,7 @@ namespace ICD.Common.Utils.Extensions
return;
}
int index = extends.BinarySearch(item);
int index = extends.BinarySearch(item, comparer);
if (index < 0)
index = ~index;