svn commit: r1682282 - /ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

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

svn commit: r1682282 - /ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

jleroux@apache.org
Author: jleroux
Date: Thu May 28 17:06:31 2015
New Revision: 1682282

URL: http://svn.apache.org/r1682282
Log:
No functional change, just fixes a trivial formatting issue

Modified:
    ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java

Modified: ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java?rev=1682282&r1=1682281&r2=1682282&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java (original)
+++ ofbiz/trunk/framework/common/src/org/ofbiz/common/FindServices.java Thu May 28 17:06:31 2015
@@ -330,10 +330,10 @@ public class FindServices {
                 fieldOp = entityOperators.get(operation);
             }
         } else {
-            if(UtilValidate.isNotEmpty(UtilGenerics.toList(fieldValue))){
+            if (UtilValidate.isNotEmpty(UtilGenerics.toList(fieldValue))) {
                 fieldOp = EntityOperator.IN;
             } else {
-                fieldOp = EntityOperator.EQUALS;  
+                fieldOp = EntityOperator.EQUALS;
             }
         }
         Object fieldObject = fieldValue;