am 30c4927d: Merge change 21505 into eclair

Merge commit '30c4927d27ada20d5b6825ae494707ad596bf45b'

* commit '30c4927d27ada20d5b6825ae494707ad596bf45b':
  Remove unintentional catch of Exception in SyncManager
This commit is contained in:
Marc Blank 2009-08-17 10:59:26 -07:00 committed by Android Git Automerger
commit 611b0484c6

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) {