Skip to content

Instantly share code, notes, and snippets.

@singhsegv
Created October 11, 2018 18:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save singhsegv/c17f341d9376193e7b410637844af604 to your computer and use it in GitHub Desktop.
Save singhsegv/c17f341d9376193e7b410637844af604 to your computer and use it in GitHub Desktop.
public class DemoPresenter extends DemoBasePresenter<DemoContract.View> implements DemoContract.Presenter {
@Inject
public DemoPresenter(DemoContract.View view) {
super(view);
}
@Override
public void unSubscribe() {
}
@Override
public void subscribe() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment