mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Get rid of some unnecessary stringification (Per IntelliJ)
This commit is contained in:
parent
cead5c7060
commit
fde438fbfb
@ -771,13 +771,13 @@ public class AccountSettings extends K9PreferenceActivity
|
||||
mAccount.setCryptoAutoSignature(mCryptoAutoSignature.isChecked());
|
||||
mAccount.setLocalStorageProviderId(mLocalStorageProvider.getValue());
|
||||
|
||||
mAccount.setAutoExpandFolderName(reverseTranslateFolder(mAutoExpandFolder.getValue().toString()));
|
||||
mAccount.setArchiveFolderName(mArchiveFolder.getValue().toString());
|
||||
mAccount.setDraftsFolderName(mDraftsFolder.getValue().toString());
|
||||
mAccount.setOutboxFolderName(mOutboxFolder.getValue().toString());
|
||||
mAccount.setSentFolderName(mSentFolder.getValue().toString());
|
||||
mAccount.setSpamFolderName(mSpamFolder.getValue().toString());
|
||||
mAccount.setTrashFolderName(mTrashFolder.getValue().toString());
|
||||
mAccount.setAutoExpandFolderName(reverseTranslateFolder(mAutoExpandFolder.getValue()));
|
||||
mAccount.setArchiveFolderName(mArchiveFolder.getValue());
|
||||
mAccount.setDraftsFolderName(mDraftsFolder.getValue());
|
||||
mAccount.setOutboxFolderName(mOutboxFolder.getValue());
|
||||
mAccount.setSentFolderName(mSentFolder.getValue());
|
||||
mAccount.setSpamFolderName(mSpamFolder.getValue());
|
||||
mAccount.setTrashFolderName(mTrashFolder.getValue());
|
||||
|
||||
|
||||
if (mIsPushCapable)
|
||||
|
Loading…
Reference in New Issue
Block a user