@Override
  public void onDestroy() {
    super.onDestroy();

    if (this.mLogic != null) {
      this.mLogic.onDestroy();
      this.mLogic = null;
    }
  }
Пример #2
0
 /** The final call you receive before your activity is destroyed. */
 public void onDestroy() {
   super.onDestroy();
 }