1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Removed unused methods

This commit is contained in:
Tobias Baum 2014-09-14 11:15:44 +02:00
parent 545dd0db06
commit a9aa4645af

View File

@ -6,11 +6,7 @@ public class LocalTextBody extends TextBody {
/** /**
* This is an HTML-ified version of the message for display purposes. * This is an HTML-ified version of the message for display purposes.
*/ */
private String mBodyForDisplay; private final String mBodyForDisplay;
public LocalTextBody(String body) {
super(body);
}
public LocalTextBody(String body, String bodyForDisplay) { public LocalTextBody(String body, String bodyForDisplay) {
super(body); super(body);
@ -21,8 +17,4 @@ public class LocalTextBody extends TextBody {
return mBodyForDisplay; return mBodyForDisplay;
} }
public void setBodyForDisplay(String mBodyForDisplay) {
this.mBodyForDisplay = mBodyForDisplay;
}
}//LocalTextBody }//LocalTextBody