Correct recently added EmailProvider logging

Change-Id: Ica61b7bcbe455448a1a261c83defa840ab1abf3e
This commit is contained in:
Marc Blank 2011-07-27 21:57:06 -07:00
parent f64fd6fe71
commit 0306da14e3

View File

@ -1801,7 +1801,8 @@ public class EmailProvider extends ContentProvider {
// Return a cursor with an id projection
MatrixCursor mc = new MatrixCursor(EmailContent.ID_PROJECTION);
mc.addRow(new Object[] {accountId});
return mc;
c = mc;
break;
case MAILBOX_ID_FROM_ACCOUNT_AND_TYPE:
// Get accountId and type and find the mailbox in our map
List<String> pathSegments = uri.getPathSegments();
@ -1811,7 +1812,8 @@ public class EmailProvider extends ContentProvider {
// Return a cursor with an id projection
mc = new MatrixCursor(EmailContent.ID_PROJECTION);
mc.addRow(new Object[] {mailboxId});
return mc;
c = mc;
break;
case BODY:
case MESSAGE:
case UPDATED_MESSAGE: