private void populateCache() {
    if (null == lc) lc = new LocalCache(mContext);

    lc.open();
    pacList = lc.getPACs();
    lc.close();
    this.notifyDataSetChanged();
    Log.e("ListView", "Notified dataset");
  }