Reverted signature formatting code that was not meant to be committed

This commit is contained in:
Bao-Long Nguyen-Trong 2009-05-10 13:55:28 +00:00
parent bb8629abe8
commit 7d98ed60ad
1 changed files with 4 additions and 4 deletions

View File

@ -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;