Skip to content

Commit f5d9c53

Browse files
committed
V1.6.0 - Fixed bugs and minor changes
1 parent 40e2f21 commit f5d9c53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
minSdk 24
1313
targetSdk 35
1414
versionCode 1
15-
versionName "1.5.7"
15+
versionName "1.6.0"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
}

base/src/main/java/uz/kmax/base/recycleview/BaseRecycleViewDU.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ abstract class BaseRecycleViewDU<T : ViewBinding, D>(
2929

3030
private val items = ArrayList<D>()
3131

32-
fun setItems(newItems: List<D>) {
32+
fun setItems(newItems: ArrayList<D>) {
3333
val diffCallback = BaseDiffUtilCallback(
3434
oldList = items,
3535
newList = newItems,

0 commit comments

Comments
 (0)