You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2010/06/12 01:00:05 UTC

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

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