1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Fix indentation and code style

This commit is contained in:
cketti 2013-03-06 07:53:39 +01:00
parent 323159ef97
commit f990e6f032

View File

@ -207,8 +207,9 @@ public class AccountSetupBasics extends K9Activity
} }
if (mAccount == null) if (mAccount == null) {
mAccount = Preferences.getPreferences(this).newAccount(); mAccount = Preferences.getPreferences(this).newAccount();
}
mAccount.setName(getOwnerName()); mAccount.setName(getOwnerName());
mAccount.setEmail(email); mAccount.setEmail(email);
mAccount.setStoreUri(incomingUri.toString()); mAccount.setStoreUri(incomingUri.toString());
@ -280,8 +281,9 @@ public class AccountSetupBasics extends K9Activity
String user = emailParts[0]; String user = emailParts[0];
String domain = emailParts[1]; String domain = emailParts[1];
if (mAccount == null) if (mAccount == null) {
mAccount = Preferences.getPreferences(this).newAccount(); mAccount = Preferences.getPreferences(this).newAccount();
}
mAccount.setName(getOwnerName()); mAccount.setName(getOwnerName());
mAccount.setEmail(email); mAccount.setEmail(email);
try { try {