mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
fixup! Use local variable for more readability
This commit is contained in:
parent
7fd52a735d
commit
00fb83e1b3
@ -1373,12 +1373,8 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
||||
|
||||
textBodyBuilder.setSignatureBeforeQuotedText(mAccount.isSignatureBeforeQuotedText());
|
||||
|
||||
if (mQuoteStyle == QuoteStyle.PREFIX && mAccount.isReplyAfterQuote()) {
|
||||
textBodyBuilder.setReplyAfterQuote(true);
|
||||
}
|
||||
else {
|
||||
textBodyBuilder.setReplyAfterQuote(false);
|
||||
}
|
||||
boolean isReplyAfterQuote = (mQuoteStyle == QuoteStyle.PREFIX && mAccount.isReplyAfterQuote());
|
||||
textBodyBuilder.setReplyAfterQuote(isReplyAfterQuote);
|
||||
|
||||
TextBody body;
|
||||
if (messageFormat == SimpleMessageFormat.HTML) {
|
||||
|
Loading…
Reference in New Issue
Block a user