File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
saved-sites/saved-sites-store/src/main/java/com/duckduckgo/savedsites/store Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ interface SavedSitesEntitiesDao {
36
36
fun insert (entity : Entity )
37
37
38
38
@Insert(onConflict = OnConflictStrategy .REPLACE )
39
- fun insertList (entities : List <Entity >)
39
+ fun insertList (entities : List <@JvmSuppressWildcards Entity >)
40
40
41
41
@Query(" select * from entities where deleted=0" )
42
42
fun entities (): List <Entity >
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ interface SavedSitesRelationsDao {
39
39
fun insert (relation : Relation ): Long
40
40
41
41
@Insert(onConflict = OnConflictStrategy .REPLACE )
42
- fun insertList (relations : List <Relation >)
42
+ fun insertList (relations : List <@JvmSuppressWildcards Relation >)
43
43
44
44
@Query(" select * from relations" )
45
45
fun relations (): List <Relation >
You can’t perform that action at this time.
0 commit comments