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/30 23:58:32 UTC

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

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);
     }
 
     /**