Remove unused getter

This commit is contained in:
Koji Arai 2014-05-02 08:39:07 +09:00
parent 56a48476e4
commit 421879e9cf
1 changed files with 1 additions and 21 deletions

View File

@ -218,44 +218,24 @@ public class TextBodyBuilder {
return HtmlConverter.textToHtmlFragment(text);
}
// getter and setter
public boolean isIncludeQuotedText() {
return mIncludeQuotedText;
}
// setter
public void setIncludeQuotedText(boolean includeQuotedText) {
mIncludeQuotedText = includeQuotedText;
}
public boolean isInsertSeparator() {
return mInsertSeparator;
}
public void setInsertSeparator(boolean insertSeparator) {
mInsertSeparator = insertSeparator;
}
public boolean isSignatureBeforeQuotedText() {
return mSignatureBeforeQuotedText;
}
public void setSignatureBeforeQuotedText(boolean signatureBeforeQuotedText) {
mSignatureBeforeQuotedText = signatureBeforeQuotedText;
}
public boolean isReplyAfterQuote() {
return mReplyAfterQuote;
}
public void setReplyAfterQuote(boolean replyAfterQuote) {
mReplyAfterQuote = replyAfterQuote;
}
public boolean isAppendSignature() {
return mAppendSignature;
}
public void setAppendSignature(boolean appendSignature) {
mAppendSignature = appendSignature;
}