mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-26 01:28:50 -05:00
finalize some declarations per IntelliJ
This commit is contained in:
parent
c79ea226a5
commit
58e6bd388b
@ -59,7 +59,7 @@ public class Account implements BaseAccount
|
|||||||
public static final String TYPE_WIFI = "WIFI";
|
public static final String TYPE_WIFI = "WIFI";
|
||||||
public static final String TYPE_MOBILE = "MOBILE";
|
public static final String TYPE_MOBILE = "MOBILE";
|
||||||
public static final String TYPE_OTHER = "OTHER";
|
public static final String TYPE_OTHER = "OTHER";
|
||||||
private static String[] networkTypes = { TYPE_WIFI, TYPE_MOBILE, TYPE_OTHER };
|
private static final String[] networkTypes = { TYPE_WIFI, TYPE_MOBILE, TYPE_OTHER };
|
||||||
|
|
||||||
private static final String DEFAULT_QUOTE_PREFIX = ">";
|
private static final String DEFAULT_QUOTE_PREFIX = ">";
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ public class Account implements BaseAccount
|
|||||||
*/
|
*/
|
||||||
private int mDeletePolicy;
|
private int mDeletePolicy;
|
||||||
|
|
||||||
private String mUuid;
|
private final String mUuid;
|
||||||
private String mStoreUri;
|
private String mStoreUri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -88,7 +88,7 @@ public class Account implements BaseAccount
|
|||||||
* True if {@link #mLocalStoreUri} may be in use at
|
* True if {@link #mLocalStoreUri} may be in use at
|
||||||
* the moment.
|
* the moment.
|
||||||
*/
|
*/
|
||||||
private boolean mIsInUse = false;
|
private final boolean mIsInUse = false;
|
||||||
private LocalStoreMigrationListener mLocalStoreMigrationListener;
|
private LocalStoreMigrationListener mLocalStoreMigrationListener;
|
||||||
private String mTransportUri;
|
private String mTransportUri;
|
||||||
private String mDescription;
|
private String mDescription;
|
||||||
@ -123,7 +123,7 @@ public class Account implements BaseAccount
|
|||||||
private int mMaxPushFolders;
|
private int mMaxPushFolders;
|
||||||
private int mIdleRefreshMinutes;
|
private int mIdleRefreshMinutes;
|
||||||
private boolean goToUnreadMessageSearch;
|
private boolean goToUnreadMessageSearch;
|
||||||
private Map<String, Boolean> compressionMap = new ConcurrentHashMap<String, Boolean>();
|
private final Map<String, Boolean> compressionMap = new ConcurrentHashMap<String, Boolean>();
|
||||||
private Searchable searchableFolders;
|
private Searchable searchableFolders;
|
||||||
private boolean subscribedFoldersOnly;
|
private boolean subscribedFoldersOnly;
|
||||||
private int maximumPolledMessageAge;
|
private int maximumPolledMessageAge;
|
||||||
|
@ -39,7 +39,7 @@ public class EmailAddressAdapter extends ResourceCursorAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private Contacts mContacts;
|
private final Contacts mContacts;
|
||||||
|
|
||||||
private EmailAddressAdapter(Context context)
|
private EmailAddressAdapter(Context context)
|
||||||
{
|
{
|
||||||
|
@ -140,7 +140,7 @@ public class MessagingController implements Runnable
|
|||||||
|
|
||||||
private HashMap<SORT_TYPE, Boolean> sortAscending = new HashMap<SORT_TYPE, Boolean>();
|
private HashMap<SORT_TYPE, Boolean> sortAscending = new HashMap<SORT_TYPE, Boolean>();
|
||||||
|
|
||||||
private ConcurrentHashMap<String, AtomicInteger> sendCount = new ConcurrentHashMap<String, AtomicInteger>();
|
private final ConcurrentHashMap<String, AtomicInteger> sendCount = new ConcurrentHashMap<String, AtomicInteger>();
|
||||||
|
|
||||||
ConcurrentHashMap<Account, Pusher> pushers = new ConcurrentHashMap<Account, Pusher>();
|
ConcurrentHashMap<Account, Pusher> pushers = new ConcurrentHashMap<Account, Pusher>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user