From 016310a054d54c11490244f2725f5323f4b2ee35 Mon Sep 17 00:00:00 2001 From: Vikram Aggarwal Date: Sat, 22 Sep 2012 16:08:11 -0700 Subject: [PATCH] Fix account order. The combined account is added both at the top and the bottom currently: Check L.3103 of EmailProvider.java. Bug: 7100404 Order of accounts in email is broken Change-Id: I1cbff04efbb0b50630c655918ffdfa4a5d11c2f7 --- src/com/android/email/provider/EmailProvider.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/com/android/email/provider/EmailProvider.java b/src/com/android/email/provider/EmailProvider.java index 36e94e31d..07dbd4050 100644 --- a/src/com/android/email/provider/EmailProvider.java +++ b/src/com/android/email/provider/EmailProvider.java @@ -3088,9 +3088,6 @@ outer: new MatrixCursorWithExtra(uiProjection, accountIdCursor.getCount(), extras); Object[] values = new Object[uiProjection.length]; try { - if (combinedAccount) { - addCombinedAccountRow(mc); - } while (accountIdCursor.moveToNext()) { String id = accountIdCursor.getString(0); Cursor accountCursor =