mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-25 07:01:50 -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());
|
textBodyBuilder.setSignatureBeforeQuotedText(mAccount.isSignatureBeforeQuotedText());
|
||||||
|
|
||||||
if (mQuoteStyle == QuoteStyle.PREFIX && mAccount.isReplyAfterQuote()) {
|
boolean isReplyAfterQuote = (mQuoteStyle == QuoteStyle.PREFIX && mAccount.isReplyAfterQuote());
|
||||||
textBodyBuilder.setReplyAfterQuote(true);
|
textBodyBuilder.setReplyAfterQuote(isReplyAfterQuote);
|
||||||
}
|
|
||||||
else {
|
|
||||||
textBodyBuilder.setReplyAfterQuote(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
TextBody body;
|
TextBody body;
|
||||||
if (messageFormat == SimpleMessageFormat.HTML) {
|
if (messageFormat == SimpleMessageFormat.HTML) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user