svn commit: r1759370 - /ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java

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

svn commit: r1759370 - /ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java

jacopoc
Author: jacopoc
Date: Tue Sep  6 07:12:28 2016
New Revision: 1759370

URL: http://svn.apache.org/viewvc?rev=1759370&view=rev
Log:
Fixed wrong module name in the DelegatorFactory class.

Modified:
    ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java

Modified: ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java?rev=1759370&r1=1759369&r2=1759370&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java (original)
+++ ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/DelegatorFactory.java Tue Sep  6 07:12:28 2016
@@ -33,7 +33,7 @@ import org.apache.ofbiz.base.util.UtilOb
 
 /** <code>Delegator</code> factory abstract class. */
 public abstract class DelegatorFactory implements Factory<Delegator, String> {
-    public static final String module = DelegatorFactoryImpl.class.getName();
+    public static final String module = DelegatorFactory.class.getName();
     private static final ConcurrentHashMap<String, Future<Delegator>> delegators = new ConcurrentHashMap<String, Future<Delegator>>();
     private static final ThreadGroup DELEGATOR_THREAD_GROUP = new ThreadGroup("DelegatorFactory");
     private static final ScheduledExecutorService executor = ExecutionPool.getScheduledExecutor(DELEGATOR_THREAD_GROUP, "delegator-startup", Runtime.getRuntime().availableProcessors(), 10, true);