1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02: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.
*/
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