1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 10:22:15 -05:00

Fixed indentation

This commit is contained in:
Roee Shlomo 2012-08-17 17:29:35 +03:00
parent 7419259407
commit ef082f0260
2 changed files with 9 additions and 9 deletions

View File

@ -567,7 +567,7 @@ public class K9 extends Application {
public void folderStatusChanged(Account account, String folderName, public void folderStatusChanged(Account account, String folderName,
int unreadMessageCount) { int unreadMessageCount) {
updateUnreadWidget(); updateUnreadWidget();
// let observers know a change occurred // let observers know a change occurred
Intent intent = new Intent(K9.Intents.EmailReceived.ACTION_REFRESH_OBSERVER, null); Intent intent = new Intent(K9.Intents.EmailReceived.ACTION_REFRESH_OBSERVER, null);

View File

@ -389,10 +389,10 @@ public class MessageProvider extends ContentProvider {
* Retrieve the account list. * Retrieve the account list.
*/ */
protected class AccountsQueryHandler implements QueryHandler { protected class AccountsQueryHandler implements QueryHandler {
private static final String FIELD_ACCOUNT_NUMBER = "accountNumber"; private static final String FIELD_ACCOUNT_NUMBER = "accountNumber";
private static final String FIELD_ACCOUNT_NAME = "accountName"; private static final String FIELD_ACCOUNT_NAME = "accountName";
private static final String FIELD_ACCOUNT_UUID = "accountUuid"; private static final String FIELD_ACCOUNT_UUID = "accountUuid";
private static final String FIELD_ACCOUNT_COLOR = "accountColor"; private static final String FIELD_ACCOUNT_COLOR = "accountColor";
@Override @Override
public String getPath() { public String getPath() {
@ -406,10 +406,10 @@ public class MessageProvider extends ContentProvider {
} }
public Cursor getAllAccounts(String[] projection) { public Cursor getAllAccounts(String[] projection) {
// Default projection // Default projection
if(projection == null) { if(projection == null) {
projection = new String[] { FIELD_ACCOUNT_NUMBER, FIELD_ACCOUNT_NAME }; projection = new String[] { FIELD_ACCOUNT_NUMBER, FIELD_ACCOUNT_NAME };
} }
MatrixCursor ret = new MatrixCursor(projection); MatrixCursor ret = new MatrixCursor(projection);