[ofbiz-framework] branch trunk updated: Fixed: Corrected property name as defined in general.properties (OFBIZ-10008)

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

[ofbiz-framework] branch trunk updated: Fixed: Corrected property name as defined in general.properties (OFBIZ-10008)

Deepak Dixit-5
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 574bf8f  Fixed: Corrected property name as defined in general.properties (OFBIZ-10008)
574bf8f is described below

commit 574bf8fa3181fc79a190d165105019e0b461412e
Author: Deepak Dixit <[hidden email]>
AuthorDate: Wed Feb 17 12:43:06 2021 +0530

    Fixed: Corrected property name as defined in general.properties
    (OFBIZ-10008)
---
 .../entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java b/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
index 7cf5a27..35f4a80 100644
--- a/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
+++ b/framework/entity/src/main/java/org/apache/ofbiz/entity/GenericDelegator.java
@@ -103,7 +103,7 @@ public class GenericDelegator implements Delegator {
      * and should improve overall stability and consistency */
     private static final boolean ALWAYS_USE_TRANS = true;
     // TODO should this is be handled by tenant?
-    private static final boolean SAVE_ENTITY_SYNC_REMOVE_INFO = UtilProperties.getPropertyAsBoolean("general", "saveEntitySyncRemove", false);
+    private static final boolean SAVE_ENTITY_SYNC_REMOVE_INFO = UtilProperties.getPropertyAsBoolean("general", "saveEntitySyncRemoveInfo", false);
 
     private String delegatorBaseName = null;
     private String delegatorFullName = null;