Skip to content

Commit

Permalink
Update to support lib 23.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Sep 4, 2015
1 parent 6c7a7d2 commit a7e1217
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ ext {
javaTargetCompatibility = JavaVersion.VERSION_1_7

// Libraries
appcompat7Version = '23.0.0'
supportAnnotations = '23.0.0'
recyclerviewVersion = '23.0.0'
appcompat7Version = '23.0.1'
supportAnnotations = '23.0.1'
recyclerviewVersion = '23.0.1'

// Libraries for samples
fragmentargsVersion = '2.1.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.hannesdorfmann.mosby.mvp.delegate;

import android.app.Activity;
import android.support.annotation.NonNull;
import com.hannesdorfmann.mosby.mvp.MvpPresenter;
import com.hannesdorfmann.mosby.mvp.MvpView;

Expand All @@ -39,7 +40,7 @@ public interface BaseMvpDelegateCallback<V extends MvpView, P extends MvpPresent
*
* @return the created presenter instance
*/
public P createPresenter();
@NonNull public P createPresenter();

/**
* Get the presenter. If null is returned, then a internally a new presenter instance gets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package com.hannesdorfmann.mosby.mvp.delegate;

import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import com.hannesdorfmann.mosby.mvp.MvpPresenter;
import com.hannesdorfmann.mosby.mvp.MvpView;
Expand Down Expand Up @@ -46,10 +47,11 @@ public interface BaseMvpViewStateDelegateCallback<V extends MvpView, P extends M
/**
* Create the viewstate. Will be called by the {@link MvpViewStateInternalDelegate}.
*/
public ViewState<V> createViewState();
@NonNull public ViewState<V> createViewState();

/**
* This method will be called by {@link MvpViewStateInternalDelegate} to inform that restoring the view state
* This method will be called by {@link MvpViewStateInternalDelegate} to inform that restoring the
* view state
* is in progress.
*
* @param restoringViewState true, if restoring viewstate is in progress, otherwise false
Expand Down

0 comments on commit a7e1217

Please sign in to comment.