Exemplo n.º 1
0
  /** Clear saved reports */
  public void clearCachedData() {
    // delete reports
    new ListReportModel().deleteReport();

    // delete checkins data
    new ListCheckinModel().deleteCheckin();

    // delete comment data
    new ListCommentModel().deleteComments();

    // delete fetched photos
    ImageManager.deleteImages(this);

    // delete pending photos
    ImageManager.deletePendingImages(this);
  }