1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-25 15:11:52 -05:00

fixup! Use local variable for more readability

This commit is contained in:
Koji Arai 2014-05-02 08:49:01 +09:00
parent 7fd52a735d
commit 00fb83e1b3

View File

@ -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) {