Refactoring

This commit is contained in:
M66B
2018-11-14 17:21:53 +01:00
parent b9fef727af
commit 884615a269
7 changed files with 67 additions and 69 deletions

View File

@@ -38,9 +38,6 @@ public interface DaoAnswer {
@Query("SELECT * FROM answer")
LiveData<List<EntityAnswer>> liveAnswers();
@Query("SELECT * FROM answer WHERE id = :id")
LiveData<EntityAnswer> liveAnswer(long id);
@Insert
long insertAnswer(EntityAnswer answer);