mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
WS
This commit is contained in:
parent
60070b7883
commit
f7da704007
@ -98,7 +98,6 @@ public class AccountSetupCheckSettings extends K9Activity implements OnClickList
|
|||||||
new CheckAccountTask(mAccount).execute(mDirection);
|
new CheckAccountTask(mAccount).execute(mDirection);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void handleCertificateValidationException(CertificateValidationException cve) {
|
private void handleCertificateValidationException(CertificateValidationException cve) {
|
||||||
Log.e(K9.LOG_TAG, "Error while testing settings", cve);
|
Log.e(K9.LOG_TAG, "Error while testing settings", cve);
|
||||||
|
|
||||||
@ -394,9 +393,11 @@ public class AccountSetupCheckSettings extends K9Activity implements OnClickList
|
|||||||
|
|
||||||
class CheckAccountTask extends AsyncTask<CheckDirection, Integer, Void> {
|
class CheckAccountTask extends AsyncTask<CheckDirection, Integer, Void> {
|
||||||
private final Account account;
|
private final Account account;
|
||||||
|
|
||||||
CheckAccountTask(Account account) {
|
CheckAccountTask(Account account) {
|
||||||
this.account = account;
|
this.account = account;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Void doInBackground(CheckDirection... params) {
|
protected Void doInBackground(CheckDirection... params) {
|
||||||
final CheckDirection direction = params[0];
|
final CheckDirection direction = params[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user