Loading src/com/android/calendar/AllInOneActivity.java +10 −3 Original line number Diff line number Diff line Loading @@ -200,10 +200,17 @@ public class AllInOneActivity extends Activity implements EventHandler, @Override protected void onQueryComplete(int token, Object cookie, Cursor cursor) { mCheckForAccounts = false; try { // If the query didn't return a cursor for some reason return if (cursor == null || cursor.getCount() > 0 || isFinishing()) { return; } } finally { if (cursor != null) { cursor.close(); } } Bundle options = new Bundle(); options.putCharSequence("introMessage", getResources().getString(R.string.create_an_account_desc)); Loading Loading
src/com/android/calendar/AllInOneActivity.java +10 −3 Original line number Diff line number Diff line Loading @@ -200,10 +200,17 @@ public class AllInOneActivity extends Activity implements EventHandler, @Override protected void onQueryComplete(int token, Object cookie, Cursor cursor) { mCheckForAccounts = false; try { // If the query didn't return a cursor for some reason return if (cursor == null || cursor.getCount() > 0 || isFinishing()) { return; } } finally { if (cursor != null) { cursor.close(); } } Bundle options = new Bundle(); options.putCharSequence("introMessage", getResources().getString(R.string.create_an_account_desc)); Loading