You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2012/03/15 09:47:00 UTC

svn commit: r1300847 - /ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java

Author: adrianc
Date: Thu Mar 15 08:47:00 2012
New Revision: 1300847

URL: http://svn.apache.org/viewvc?rev=1300847&view=rev
Log:
Fixed a static field that was initialized to the wrong class name.

Modified:
    ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java

Modified: ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java?rev=1300847&r1=1300846&r2=1300847&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java (original)
+++ ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/SetServiceFields.java Thu Mar 15 08:47:00 2012
@@ -48,7 +48,7 @@ public class SetServiceFields extends Me
         }
     }
 
-    public static final String module = CallService.class.getName();
+    public static final String module = SetServiceFields.class.getName();
 
     String serviceName;
     ContextAccessor<Map<String, ? extends Object>> mapAcsr;