优化
This commit is contained in:
@@ -49,11 +49,7 @@ abstract class DiffRecyclerAdapter<ITEM, VB : ViewBinding>(protected val context
|
|||||||
@Synchronized
|
@Synchronized
|
||||||
fun setItems(items: List<ITEM>?) {
|
fun setItems(items: List<ITEM>?) {
|
||||||
kotlin.runCatching {
|
kotlin.runCatching {
|
||||||
if (items == null) {
|
asyncListDiffer.submitList(items)
|
||||||
asyncListDiffer.submitList(null)
|
|
||||||
} else {
|
|
||||||
asyncListDiffer.submitList(ArrayList(items))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ class ChangeCoverViewModel(application: Application) : BaseViewModel(application
|
|||||||
searchSuccess = {
|
searchSuccess = {
|
||||||
if (!searchBooks.contains(it)) {
|
if (!searchBooks.contains(it)) {
|
||||||
searchBooks.add(it)
|
searchBooks.add(it)
|
||||||
trySend(searchBooks)
|
trySend(ArrayList(searchBooks))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user