Remove unintentional catch of Exception in SyncManager
This commit is contained in:
parent
c8c68fa764
commit
0b89d8f5af
@ -1044,14 +1044,12 @@ public class SyncManager extends Service implements Runnable {
|
|||||||
}
|
}
|
||||||
stopServices();
|
stopServices();
|
||||||
log("Shutdown requested");
|
log("Shutdown requested");
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
} finally {
|
} finally {
|
||||||
log("Goodbye");
|
log("Goodbye");
|
||||||
}
|
}
|
||||||
|
|
||||||
startService(new Intent(this, SyncManager.class));
|
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) {
|
private void releaseMailbox(long mailboxId) {
|
||||||
|
Loading…
Reference in New Issue
Block a user