Fix indentation and code style

This commit is contained in:
cketti 2013-03-06 07:53:39 +01:00
parent 323159ef97
commit f990e6f032
1 changed files with 6 additions and 4 deletions

View File

@ -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 {