mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Remove unused getter
This commit is contained in:
parent
56a48476e4
commit
421879e9cf
@ -218,44 +218,24 @@ public class TextBodyBuilder {
|
|||||||
return HtmlConverter.textToHtmlFragment(text);
|
return HtmlConverter.textToHtmlFragment(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
// getter and setter
|
// setter
|
||||||
|
|
||||||
public boolean isIncludeQuotedText() {
|
|
||||||
return mIncludeQuotedText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIncludeQuotedText(boolean includeQuotedText) {
|
public void setIncludeQuotedText(boolean includeQuotedText) {
|
||||||
mIncludeQuotedText = includeQuotedText;
|
mIncludeQuotedText = includeQuotedText;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isInsertSeparator() {
|
|
||||||
return mInsertSeparator;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setInsertSeparator(boolean insertSeparator) {
|
public void setInsertSeparator(boolean insertSeparator) {
|
||||||
mInsertSeparator = insertSeparator;
|
mInsertSeparator = insertSeparator;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isSignatureBeforeQuotedText() {
|
|
||||||
return mSignatureBeforeQuotedText;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSignatureBeforeQuotedText(boolean signatureBeforeQuotedText) {
|
public void setSignatureBeforeQuotedText(boolean signatureBeforeQuotedText) {
|
||||||
mSignatureBeforeQuotedText = signatureBeforeQuotedText;
|
mSignatureBeforeQuotedText = signatureBeforeQuotedText;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isReplyAfterQuote() {
|
|
||||||
return mReplyAfterQuote;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReplyAfterQuote(boolean replyAfterQuote) {
|
public void setReplyAfterQuote(boolean replyAfterQuote) {
|
||||||
mReplyAfterQuote = replyAfterQuote;
|
mReplyAfterQuote = replyAfterQuote;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isAppendSignature() {
|
|
||||||
return mAppendSignature;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAppendSignature(boolean appendSignature) {
|
public void setAppendSignature(boolean appendSignature) {
|
||||||
mAppendSignature = appendSignature;
|
mAppendSignature = appendSignature;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user