[ofbiz-framework] branch release18.12 updated: Fixed: getEntityRefData service has a weird issue (OFBIZ-11401)

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

[ofbiz-framework] branch release18.12 updated: Fixed: getEntityRefData service has a weird issue (OFBIZ-11401)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new b376a2f  Fixed: getEntityRefData service has a weird issue (OFBIZ-11401)
b376a2f is described below

commit b376a2f4b90e25fd66d59f0315b74caf22e358cc
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Thu Jun 18 17:34:18 2020 +0200

    Fixed: getEntityRefData service has a weird issue (OFBIZ-11401)
   
    MODULE does not exist in R18 (I did by hand in R17 so did not miss it...)
---
 .../src/main/java/org/apache/ofbiz/webtools/WebToolsServices.java   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/framework/webtools/src/main/java/org/apache/ofbiz/webtools/WebToolsServices.java b/framework/webtools/src/main/java/org/apache/ofbiz/webtools/WebToolsServices.java
index 5efb468..a54194b 100644
--- a/framework/webtools/src/main/java/org/apache/ofbiz/webtools/WebToolsServices.java
+++ b/framework/webtools/src/main/java/org/apache/ofbiz/webtools/WebToolsServices.java
@@ -664,7 +664,7 @@ public class WebToolsServices {
                             try {
                                 entityDescription = bundle.getString("EntityDescription." + entity.getEntityName());
                             } catch (Exception exception) {
-                                Debug.logWarning("EntityDescription for entity " + entity.getEntityName() + " is missing", MODULE);
+                                Debug.logWarning("EntityDescription for entity " + entity.getEntityName() + " is missing", module);
                             }
                         }
                         if (UtilValidate.isEmpty(entityDescription)) {
@@ -686,7 +686,7 @@ public class WebToolsServices {
                                     fieldDescription = bundle.getString("FieldDescription." + entity.getEntityName() + "." + field.getName());
                                 } catch (Exception exception) {
                                     Debug.logWarning("FieldDescription for entity.field " + entity.getEntityName() + "."
-                                            + field.getName() + " is missing", MODULE);
+                                            + field.getName() + " is missing", module);
                                 }
                             }
                             if (UtilValidate.isEmpty(fieldDescription)) {
@@ -696,7 +696,7 @@ public class WebToolsServices {
                                 try {
                                 fieldDescription = bundle.getString("FieldDescription." + field.getName());
                                 } catch (Exception exception) {
-                                    Debug.logWarning("FieldDescription for field " + field.getName() + " is missing", MODULE);
+                                    Debug.logWarning("FieldDescription for field " + field.getName() + " is missing", module);
                                 }
                             }
                             if (UtilValidate.isEmpty(fieldDescription)) {