1
0
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:
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());
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) {