svn commit: r1356168 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java

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

svn commit: r1356168 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java

adrianc
Author: adrianc
Date: Mon Jul  2 10:33:49 2012
New Revision: 1356168

URL: http://svn.apache.org/viewvc?rev=1356168&view=rev
Log:
Small fixup for my previous commit.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java?rev=1356168&r1=1356167&r2=1356168&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/finder/EntityFinderUtil.java Mon Jul  2 10:33:49 2012
@@ -262,7 +262,7 @@ public class EntityFinderUtil {
         public ConditionList(Element conditionListElement) {
             String operatorAttribute = conditionListElement.getAttribute("combine");
             if (operatorAttribute.isEmpty()) {
-                operatorAttribute = "equals";
+                operatorAttribute = "and";
             }
             this.operator = EntityOperator.lookup(operatorAttribute);
             if (this.operator == null) {