Updated the SMS message so that the subject and message are separated

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@777503 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mcombellack 2009-05-22 12:59:56 +00:00
parent 0206248ffb
commit b276ba83f7

View file

@ -40,7 +40,7 @@ public class NotificationImpl implements Notification {
String sms = getSMSAddress(accountID);
if (sms != null) {
System.out.println("Sending SMS to " + sms);
result &= smsGateway.sendSMS(SCA_TOURS_SMS, sms, subject + message);
result &= smsGateway.sendSMS(SCA_TOURS_SMS, sms, subject + ". " + message);
}
return result;