Loading src/com/android/contacts/group/local/LocalGroupCountTask.java +4 −2 Original line number Diff line number Diff line Loading @@ -78,9 +78,11 @@ public class LocalGroupCountTask extends AsyncTask<Object, Object, Object> { groups = mContext.getContentResolver().query(LocalGroups.CONTENT_URI, new String[] { GroupColumns._ID }, null, null, null); if (groups != null) { while (groups.moveToNext()) { countMemebersById(updateList, groups.getLong(0)); } } } finally { if (groups != null) { groups.close(); Loading Loading
src/com/android/contacts/group/local/LocalGroupCountTask.java +4 −2 Original line number Diff line number Diff line Loading @@ -78,9 +78,11 @@ public class LocalGroupCountTask extends AsyncTask<Object, Object, Object> { groups = mContext.getContentResolver().query(LocalGroups.CONTENT_URI, new String[] { GroupColumns._ID }, null, null, null); if (groups != null) { while (groups.moveToNext()) { countMemebersById(updateList, groups.getLong(0)); } } } finally { if (groups != null) { groups.close(); Loading