This commit is contained in:
M66B 2019-04-19 16:15:27 +02:00
parent 734a34dbe9
commit f4335f5a90
1 changed files with 0 additions and 15 deletions

View File

@ -72,16 +72,6 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
}
}
@OnLifecycleEvent(Lifecycle.Event.ON_START)
public void onStart() {
Log.i("Start task " + this);
}
@OnLifecycleEvent(Lifecycle.Event.ON_STOP)
public void onStop() {
Log.i("Stop task " + this);
}
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
public void onResume() {
Log.i("Resume task " + this);
@ -99,11 +89,6 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
paused = true;
}
@OnLifecycleEvent(Lifecycle.Event.ON_CREATE)
public void onCreated() {
Log.i("Created task " + this);
}
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
Log.i("Destroy task " + this);