Update room to v2.6.0

This commit is contained in:
Renovate Bot 2023-10-27 14:21:50 +00:00 committed by birdbird
parent 71336b3c9f
commit 397e1b6ecc
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ materialDesign = "1.10.0"
constraintLayout = "2.1.4"
activity = "1.8.0"
multidex = "2.0.1"
room = "2.5.2"
room = "2.6.0"
kotlin = "1.9.10"
ksp = "1.9.10-1.0.13"
kotlinxCoroutines = "1.7.3"

View File

@ -91,7 +91,7 @@ interface GenericDao<T> {
*/
@Insert(onConflict = OnConflictStrategy.IGNORE)
@JvmSuppressWildcards
fun insertIgnoring(obj: List<T>?): List<Long>
fun insertIgnoring(obj: List<T>): List<Long>
/**
* Update an object from the database.
@ -109,7 +109,7 @@ interface GenericDao<T> {
*/
@Update
@JvmSuppressWildcards
fun update(obj: List<T>?)
fun update(obj: List<T>)
/**
* Delete an object from the database