File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
core/database/src/main/java/com/google/samples/apps/nowinandroid/core/database/dao Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import androidx.room.Dao
2020import androidx.room.Insert
2121import androidx.room.OnConflictStrategy
2222import androidx.room.Query
23- import androidx.room.Update
2423import androidx.room.Upsert
2524import com.google.samples.apps.nowinandroid.core.database.model.TopicEntity
2625import kotlinx.coroutines.flow.Flow
@@ -55,12 +54,6 @@ interface TopicDao {
5554 @Insert(onConflict = OnConflictStrategy .IGNORE )
5655 suspend fun insertOrIgnoreTopics (topicEntities : List <TopicEntity >): List <Long >
5756
58- /* *
59- * Updates [entities] in the db that match the primary key, and no-ops if they don't
60- */
61- @Update
62- suspend fun updateTopics (entities : List <TopicEntity >)
63-
6457 /* *
6558 * Inserts or updates [entities] in the db under the specified primary keys
6659 */
You can’t perform that action at this time.
0 commit comments