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">
<activity
android:name=".ui.main.MainActivity"
android:launchMode="singleTask">
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

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