Skip to content

Commit

Permalink
Fix typo in variable name (sockeqwe#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
stkent authored and sockeqwe committed Jul 13, 2016
1 parent 8d090b7 commit ec9079e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ protected MvpInternalDelegate<V, P> getInternalDelegate() {
@Override public Object onRetainCustomNonConfigurationInstance() {

P presenter = delegateCallback.shouldInstanceBeRetained() ? delegateCallback.getPresenter() : null;
Object nonMosbyConfiguraionInstance =
Object nonMosbyConfigurationInstance =
delegateCallback.onRetainNonMosbyCustomNonConfigurationInstance();

if (presenter == null && nonMosbyConfiguraionInstance == null) {
if (presenter == null && nonMosbyConfigurationInstance == null) {
return null;
}

return new ActivityMvpNonConfigurationInstances<>(presenter, nonMosbyConfiguraionInstance);
return new ActivityMvpNonConfigurationInstances<>(presenter, nonMosbyConfigurationInstance);
}

@Override public Object getNonMosbyLastCustomNonConfigurationInstance() {
Expand Down

0 comments on commit ec9079e

Please sign in to comment.