Merge change 20888

* changes:
  Fixes re: CL20440, per stadler's comments
This commit is contained in:
Android (Google) Code Review 2009-08-12 09:15:52 -07:00
commit 20583edef6

View File

@ -315,8 +315,9 @@ public class FolderSyncParser extends Parser {
// I'm not aware of any other way to deal with this properly
mBindArguments[0] = "Sync Issues";
mBindArguments[1] = mAccountIdAsString;
Cursor c = mContentResolver.query(Mailbox.CONTENT_URI, MAILBOX_ID_COLUMNS_PROJECTION,
WHERE_DISPLAY_NAME_AND_ACCOUNT, mBindArguments, null);
Cursor c = mContentResolver.query(Mailbox.CONTENT_URI,
MAILBOX_ID_COLUMNS_PROJECTION, WHERE_DISPLAY_NAME_AND_ACCOUNT,
mBindArguments, null);
String parentServerId = null;
long id = 0;
try {