Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Jul 12, 2015
1 parent 365b484 commit 0231ca3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.1.1-SNAPSHOT
VERSION_NAME=1.1.1
VERSION_CODE=111
GROUP=com.hannesdorfmann.mosby

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package com.hannesdorfmann.mosby.mvp;

import android.support.annotation.Nullable;
import java.lang.ref.WeakReference;

/**
Expand Down Expand Up @@ -45,7 +44,6 @@ public class MvpBasePresenter<V extends MvpView> implements MvpPresenter<V> {
*
* @return <code>null</code>, if view is not attached, otherwise the concrete view instance
*/
@Nullable
protected V getView() {
return viewRef == null ? null : viewRef.get();
}
Expand Down

0 comments on commit 0231ca3

Please sign in to comment.