Reverted signature formatting code that was not meant to be committed
This commit is contained in:
parent
bb8629abe8
commit
7d98ed60ad
1 changed files with 4 additions and 4 deletions
|
@ -672,12 +672,12 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
|
|||
return message;
|
||||
}
|
||||
|
||||
private String appendSignature(String text) {
|
||||
private String appendSignature (String text) {
|
||||
String mSignature;
|
||||
mSignature = mAccount.getSignature();
|
||||
|
||||
if (mSignature != null && !mSignature.contentEquals("")) {
|
||||
text += "\n-----\n" + mAccount.getSignature();
|
||||
|
||||
if (mSignature != null && ! mSignature.contentEquals("")){
|
||||
text += "\n-- \n" + mAccount.getSignature();
|
||||
}
|
||||
|
||||
return text;
|
||||
|
|
Loading…
Reference in a new issue