Delete useless comment

This commit is contained in:
Shinokuni 2019-11-12 21:34:15 +01:00
parent 00f9a8ed89
commit 5bd46ffacb
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import io.reactivex.Single;
public interface BaseDao<T> {
@Insert
Single<Long> insert(T entity); // can't turn return type to Single<Long> while some repositories can't use rxjava properly
Single<Long> insert(T entity);
// only here for compatibility with LocalFeedRepository
// which hasn't been written with rxjava usage in mind