Skip to content

Commit 02da32e

Browse files
committed
Removed ACRA notifications in CheckEmailSettingsAsyncTaskLoader. | #170
1 parent c004a26 commit 02da32e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

FlowCrypt/src/main/java/com/flowcrypt/email/ui/loader/CheckEmailSettingsAsyncTaskLoader.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
import com.flowcrypt.email.api.email.protocol.PropertiesHelper;
1616
import com.flowcrypt.email.model.results.LoaderResult;
1717

18-
import org.acra.ACRA;
19-
2018
import javax.mail.Folder;
2119
import javax.mail.MessagingException;
2220
import javax.mail.Session;
@@ -59,7 +57,6 @@ public LoaderResult loadInBackground() {
5957
testImapConnection(session);
6058
} catch (MessagingException e) {
6159
e.printStackTrace();
62-
ACRA.getErrorReporter().handleException(e);
6360
Exception exception = new Exception("IMAP: " + e.getMessage(), e);
6461
return new LoaderResult(null, exception);
6562
}
@@ -68,7 +65,6 @@ public LoaderResult loadInBackground() {
6865
testSmtpConnection(session);
6966
} catch (MessagingException e) {
7067
e.printStackTrace();
71-
ACRA.getErrorReporter().handleException(e);
7268
Exception exception = new Exception("SMTP: " + e.getMessage(), e);
7369
return new LoaderResult(null, exception);
7470
}

0 commit comments

Comments
 (0)