svn commit: r959453 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java

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

svn commit: r959453 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java

lektran
Author: lektran
Date: Wed Jun 30 21:58:32 2010
New Revision: 959453

URL: http://svn.apache.org/viewvc?rev=959453&view=rev
Log:
ServiceDispatcher method was returning a call to itself, stumbled across it by chance

Modified:
    ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java

Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java?rev=959453&r1=959452&r2=959453&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java (original)
+++ ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericDispatcher.java Wed Jun 30 21:58:32 2010
@@ -180,7 +180,7 @@ public class GenericDispatcher extends G
     }
 
     public Map<String, Object> runSync(String serviceName, int transactionTimeout, boolean requireNewTransaction, Object... context) throws ServiceAuthException, ServiceValidationException, GenericServiceException {
-        return runSync(serviceName, transactionTimeout, requireNewTransaction, ServiceUtil.makeContext(context));
+        return runSync(serviceName, ServiceUtil.makeContext(context), transactionTimeout, requireNewTransaction);
     }
 
     /**