svn commit: r953900 - /ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r953900 - /ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java

lektran
Author: lektran
Date: Fri Jun 11 23:00:05 2010
New Revision: 953900

URL: http://svn.apache.org/viewvc?rev=953900&view=rev
Log:
Merged from trunk r953898:
Remove stray character introduced in r953889

Modified:
    ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java

Modified: ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java?rev=953900&r1=953899&r2=953900&view=diff
==============================================================================
--- ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java (original)
+++ ofbiz/branches/release10.04/applications/accounting/src/org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java Fri Jun 11 23:00:05 2010
@@ -873,7 +873,7 @@ public class PayPalServices {
             if (errors.size() == 1) {
                 Map.Entry<String, String> error = errors.entrySet().iterator().next();
                 result.put("releaseCode", error.getKey());
-                result.put("releaseMessage", error.getValue()t);
+                result.put("releaseMessage", error.getValue());
             } else {
                 result.put("releaseMessage", "Multiple errors occurred, please refer to the gateway response messages");
                 result.put("internalRespMsgs", errors);