mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
removed redundant assignment to AccountSetupBasics
removed null affectation because it’s done automatically
This commit is contained in:
parent
aae71125c6
commit
9bf546b33b
@ -277,8 +277,8 @@ public class AccountSetupBasics extends K9Activity
|
||||
String[] emailParts = splitEmail(email);
|
||||
String user = emailParts[0];
|
||||
String domain = emailParts[1];
|
||||
URI incomingUri = null;
|
||||
URI outgoingUri = null;
|
||||
URI incomingUri;
|
||||
URI outgoingUri;
|
||||
try {
|
||||
String userEnc = UrlEncodingHelper.encodeUtf8(user);
|
||||
String passwordEnc = UrlEncodingHelper.encodeUtf8(password);
|
||||
@ -400,7 +400,7 @@ public class AccountSetupBasics extends K9Activity
|
||||
|
||||
String password = null;
|
||||
String clientCertificateAlias = null;
|
||||
AuthType authenticationType = null;
|
||||
AuthType authenticationType;
|
||||
if (mClientCertificateCheckBox.isChecked()) {
|
||||
authenticationType = AuthType.EXTERNAL;
|
||||
clientCertificateAlias = mClientCertificateSpinner.getAlias();
|
||||
|
Loading…
Reference in New Issue
Block a user