Remove unintentional catch of Exception in SyncManager

This commit is contained in:
Marc Blank 2009-08-17 09:35:12 -07:00
parent c8c68fa764
commit 0b89d8f5af

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