diff --git a/src/com/fsck/k9/mail/store/local/LocalTextBody.java b/src/com/fsck/k9/mail/store/local/LocalTextBody.java index c28bccfee..c555cd43c 100644 --- a/src/com/fsck/k9/mail/store/local/LocalTextBody.java +++ b/src/com/fsck/k9/mail/store/local/LocalTextBody.java @@ -6,11 +6,7 @@ public class LocalTextBody extends TextBody { /** * This is an HTML-ified version of the message for display purposes. */ - private String mBodyForDisplay; - - public LocalTextBody(String body) { - super(body); - } + private final String mBodyForDisplay; public LocalTextBody(String body, String bodyForDisplay) { super(body); @@ -21,8 +17,4 @@ public class LocalTextBody extends TextBody { return mBodyForDisplay; } - public void setBodyForDisplay(String mBodyForDisplay) { - this.mBodyForDisplay = mBodyForDisplay; - } - }//LocalTextBody \ No newline at end of file