Merge change 23407 into eclair

* changes:
  Remove the temporary call to start SyncManager in Welcome.java
This commit is contained in:
Android (Google) Code Review 2009-08-31 22:32:03 -07:00
commit d39e34862a
1 changed files with 0 additions and 6 deletions

View File

@ -19,10 +19,8 @@ package com.android.email.activity;
import com.android.email.activity.setup.AccountSetupBasics;
import com.android.email.provider.EmailContent.Account;
import com.android.email.provider.EmailContent.Mailbox;
import com.android.exchange.SyncManager;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
@ -42,10 +40,6 @@ public class Welcome extends Activity {
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
// TODO Automatically start Exchange service, until we can base this on the existence of
// at least one Exchange account
startService(new Intent(this, SyncManager.class));
// Find out how many accounts we have, and if there's just one, go directly to it
Cursor c = null;
try {