You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2013/02/19 10:02:24 UTC

svn commit: r1447638 - /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java

Author: adrianc
Date: Tue Feb 19 09:02:24 2013
New Revision: 1447638

URL: http://svn.apache.org/r1447638
Log:
Small fixup for EntityEcaCondition.java accessor method.

Modified:
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java?rev=1447638&r1=1447637&r2=1447638&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java Tue Feb 19 09:02:24 2013
@@ -96,7 +96,7 @@ public final class EntityEcaCondition im
     }
 
     public String getRValue() {
-        if (constant) {
+        if (constant && !rhsValueName.isEmpty()) {
             return "\"".concat(this.rhsValueName).concat("\"");
         }
         return this.rhsValueName;