mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-13 07:57:16 +03:00
Merge branch 'renovate/room' into 'develop'
Update room to v2.6.0 See merge request ultrasonic/ultrasonic!1138
This commit is contained in:
commit
58944bb0fd
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user