update dependencies

This commit is contained in:
2021-08-25 15:50:10 +06:00
parent f5bc1c1fce
commit b61f6b81f1
4 changed files with 12 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ class DiffUtilsTests {
val withIndex = oldList.withIndex()
for (count in 1 .. (floor(oldList.size.toFloat() / 2).toInt())) {
for ((i, v) in withIndex) {
for ((i, _) in withIndex) {
if (i + count > oldList.lastIndex) {
continue
}