svn commit: r1056098 - /ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java

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

svn commit: r1056098 - /ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java

mrisaliti
Author: mrisaliti
Date: Thu Jan  6 21:59:25 2011
New Revision: 1056098

URL: http://svn.apache.org/viewvc?rev=1056098&view=rev
Log:
This generics markup will be fix later

Modified:
    ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java

Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java?rev=1056098&r1=1056097&r2=1056098&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java (original)
+++ ofbiz/trunk/applications/order/src/org/ofbiz/order/quote/QuoteServices.java Thu Jan  6 21:59:25 2011
@@ -93,7 +93,7 @@ public class QuoteServices {
             return ServiceUtil.returnError("No sendTo email address found");
         }
 
-        Map<String, Object> bodyParameters = UtilMisc.toMap("quoteId", quoteId, "userLogin", userLogin, "locale", locale);
+        Map bodyParameters = UtilMisc.toMap("quoteId", quoteId, "userLogin", userLogin, "locale", locale);
         bodyParameters.put("note", note);
         bodyParameters.put("partyId", quote.getString("partyId")); // This is set to trigger the "storeEmailAsCommunication" seca
         sendMap.put("bodyParameters", bodyParameters);