Remove the temporary call to start SyncManager in Welcome.java

Change-Id: Ic15b19374e89d2b1329e55d4bc86336499a983fd
This commit is contained in:
Marc Blank 2009-08-31 22:06:30 -07:00
parent 7266d90dac
commit 75a0873dd9

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 {