Let GC take care of the presenter. Also fix #947

This commit is contained in:
inorichi 2017-08-29 09:55:42 +02:00
parent e6ff9e18cc
commit ecfe72bcad
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,7 @@
android:theme="@style/Theme.Tachiyomi"> android:theme="@style/Theme.Tachiyomi">
<activity <activity
android:name=".ui.main.MainActivity" android:name=".ui.main.MainActivity"
android:launchMode="singleTask"> android:launchMode="singleTop">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />

View File

@ -61,7 +61,6 @@ public class NucleusConductorDelegate<P extends Presenter> {
void onDestroy() { void onDestroy() {
if (presenter != null) { if (presenter != null) {
presenter.destroy(); presenter.destroy();
presenter = null;
} }
} }
} }