fix CI build

This commit is contained in:
Lightczx
2023-09-20 11:38:54 +08:00
parent 68a6834d39
commit 301ead44a2

View File

@@ -33,7 +33,6 @@ internal static partial class EnumerableExtension
public static T? BinarySearch<T>(this List<T> list, Func<T, int> comparer)
where T : class
{
list.BinarySearch
Span<T> span = CollectionsMarshal.AsSpan(list);
int left = 0;
int right = span.Length - 1;