mirror of https://github.com/readrops/Readrops.git
Delete useless comment
This commit is contained in:
parent
00f9a8ed89
commit
5bd46ffacb
|
@ -12,7 +12,7 @@ import io.reactivex.Single;
|
||||||
public interface BaseDao<T> {
|
public interface BaseDao<T> {
|
||||||
|
|
||||||
@Insert
|
@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
|
// only here for compatibility with LocalFeedRepository
|
||||||
// which hasn't been written with rxjava usage in mind
|
// which hasn't been written with rxjava usage in mind
|
||||||
|
|
Loading…
Reference in New Issue