public void update(ShowInfo showInfo) {
   ShowInfo match = getShowInfo(showInfo.getId());
   Log.d("DEBUG", "After update in ShowsArrayAdapter");
   if (match != null) {
     match.updateShowInfo(showInfo);
     Log.d("DEBUG", "After match in update " + match.getAsString());
     this.notifyDataSetChanged();
   }
 }