Author: nmalin
Date: Fri Jun 26 07:04:55 2015
New Revision: 1687679

URL: http://svn.apache.org/r1687679
Log:
 correct compilation error, missing delegatorBaseName parameter for function 
GenericDelegator.getEntityNamesByGroup. Issue OFBIZ-6533, thanks Wei Zhang for 
this alert

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java

Modified: 
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java?rev=1687679&r1=1687678&r2=1687679&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java 
(original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java Fri 
Jun 26 07:04:55 2015
@@ -423,7 +423,7 @@ public class GenericDelegator implements
      */
     @Override
     public Map<String, ModelEntity> getModelEntityMapByGroup(String groupName) 
throws GenericEntityException {
-        Set<String> entityNameSet = 
getModelGroupReader().getEntityNamesByGroup(groupName);
+        Set<String> entityNameSet = 
getModelGroupReader().getEntityNamesByGroup(delegatorBaseName, groupName);
 
         if (this.delegatorInfo.getDefaultGroupName().equals(groupName)) {
             // add all entities with no group name to the Set


Reply via email to