Author: adrianc
Date: Thu Mar 15 08:47:00 2012
New Revision: 1300847
URL:
http://svn.apache.org/viewvc?rev=1300847&view=revLog:
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;