Simplify expression.

This commit is contained in:
smoogipooo 2017-05-24 01:38:28 +09:00
parent 7628cdf522
commit 462bbd02ba
1 changed files with 0 additions and 2 deletions

View File

@ -92,8 +92,6 @@ private T binarySearch<T>(SortedList<T> list, double time)
index = ~index;
if (index == list.Count)
return list[list.Count - 1];
return list[index - 1];
}
}