mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-12 06:08:25 -05:00
Fix indentation and code style
This commit is contained in:
parent
323159ef97
commit
f990e6f032
@ -207,8 +207,9 @@ public class AccountSetupBasics extends K9Activity
|
||||
|
||||
|
||||
}
|
||||
if (mAccount == null)
|
||||
mAccount = Preferences.getPreferences(this).newAccount();
|
||||
if (mAccount == null) {
|
||||
mAccount = Preferences.getPreferences(this).newAccount();
|
||||
}
|
||||
mAccount.setName(getOwnerName());
|
||||
mAccount.setEmail(email);
|
||||
mAccount.setStoreUri(incomingUri.toString());
|
||||
@ -280,8 +281,9 @@ public class AccountSetupBasics extends K9Activity
|
||||
String user = emailParts[0];
|
||||
String domain = emailParts[1];
|
||||
|
||||
if (mAccount == null)
|
||||
mAccount = Preferences.getPreferences(this).newAccount();
|
||||
if (mAccount == null) {
|
||||
mAccount = Preferences.getPreferences(this).newAccount();
|
||||
}
|
||||
mAccount.setName(getOwnerName());
|
||||
mAccount.setEmail(email);
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user