Merge change 21505 into eclair

* changes:
  Remove unintentional catch of Exception in SyncManager
This commit is contained in:
Android (Google) Code Review 2009-08-17 09:49:11 -07:00
commit 30c4927d27

View File

@ -1044,14 +1044,12 @@ public class SyncManager extends Service implements Runnable {
}
stopServices();
log("Shutdown requested");
} catch (Exception e) {
e.printStackTrace();
} finally {
log("Goodbye");
}
startService(new Intent(this, SyncManager.class));
throw new RuntimeException("MailService crash; please restart me...");
throw new RuntimeException("EAS SyncManager crash; please restart me...");
}
private void releaseMailbox(long mailboxId) {