janishar / android-mvp-architecture

This repository contains a detailed sample app that implements MVP architecture using Dagger2, GreenDao, RxJava2, FastAndroidNetworking and PlaceholderView
https://janisharali.com
Apache License 2.0
4.44k stars 1.24k forks source link

<V extends MvpView> instead of <V extends FeedMvpView> #52

Open kazemihabib opened 6 years ago

kazemihabib commented 6 years ago

In FeedMvpPresenter https://github.com/MindorksOpenSource/android-mvp-architecture/blob/08953b292a240abc1c2dedbe49c65e38a7c47dec/app/src/main/java/com/mindorks/framework/mvp/ui/feed/FeedMvpPresenter.java#L25

I think this should be

public interface FeedMvpPresenter<V extends FeedMvpView> extends MvpPresenter<V>