From e2cffa074fa966eaadc6d89e85d94a90beb45c62 Mon Sep 17 00:00:00 2001 From: cketti Date: Sat, 3 May 2014 06:33:33 +0200 Subject: [PATCH] Update/remove comments --- .../k9/mail/internet/TextBodyBuilder.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/src/com/fsck/k9/mail/internet/TextBodyBuilder.java b/src/com/fsck/k9/mail/internet/TextBodyBuilder.java index ac17126c8..96e19e9e9 100644 --- a/src/com/fsck/k9/mail/internet/TextBodyBuilder.java +++ b/src/com/fsck/k9/mail/internet/TextBodyBuilder.java @@ -9,14 +9,12 @@ import com.fsck.k9.helper.StringUtils; import com.fsck.k9.mail.Body; public class TextBodyBuilder { - // option private boolean mIncludeQuotedText = true; private boolean mReplyAfterQuote = false; private boolean mSignatureBeforeQuotedText = false; private boolean mInsertSeparator = false; private boolean mAppendSignature = true; - // message parts private String mMessageContent; private String mSignature; private String mQuotedText; @@ -29,12 +27,6 @@ public class TextBodyBuilder { /** * Build the {@link Body} that will contain the text of the message. * - *

- * Draft messages are treated somewhat differently in that signatures are - * not appended and HTML separators between composed text and quoted text - * are not added. - *

- * * @return {@link TextBody} instance that contains the entered text and * possibly the quoted original message. */ @@ -127,12 +119,6 @@ public class TextBodyBuilder { /** * Build the {@link Body} that will contain the text of the message. * - *

- * Draft messages are treated somewhat differently in that signatures are - * not appended and HTML separators between composed text and quoted text - * are not added. - *

- * * @return {@link TextBody} instance that contains the entered text and * possibly the quoted original message. */ @@ -198,11 +184,6 @@ public class TextBodyBuilder { return signature; } - /** - * Get an HTML version of the signature in the #mSignatureView, if any. - * - * @return HTML version of signature. - */ private String getSignatureHtml() { String signature = ""; if (!StringUtils.isNullOrEmpty(mSignature)) { @@ -227,8 +208,6 @@ public class TextBodyBuilder { return HtmlConverter.textToHtmlFragment(text); } - // setter - public void setSignature(String signature) { mSignature = signature; }