You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2009/05/21 12:45:10 UTC

svn commit: r777045 - /ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java

Author: mor
Date: Thu May 21 10:45:09 2009
New Revision: 777045

URL: http://svn.apache.org/viewvc?rev=777045&view=rev
Log:
Removed whitespace characters

Modified:
    ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java

Modified: ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java?rev=777045&r1=777044&r2=777045&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java (original)
+++ ofbiz/trunk/applications/order/src/org/ofbiz/order/order/OrderLookupServices.java Thu May 21 10:45:09 2009
@@ -485,14 +485,12 @@
             EntityConditionList exprs = null;
             if ("Y".equals(includeCountry)) {
                 exprs = EntityCondition.makeCondition(UtilMisc.toList(
-                        EntityCondition.makeCondition("contactMechPurposeTypeId", "SHIPPING_LOCATION"),
-                        EntityCondition.makeCondition("countryGeoId", countryGeoId)
-                        ), EntityOperator.AND);                
+                            EntityCondition.makeCondition("contactMechPurposeTypeId", "SHIPPING_LOCATION"),
+                            EntityCondition.makeCondition("countryGeoId", countryGeoId)), EntityOperator.AND);
             } else {
                 exprs = EntityCondition.makeCondition(UtilMisc.toList(
-                        EntityCondition.makeCondition("contactMechPurposeTypeId", "SHIPPING_LOCATION"),
-                        EntityCondition.makeCondition("countryGeoId", EntityOperator.NOT_EQUAL, countryGeoId)
-                        ), EntityOperator.AND); 
+                            EntityCondition.makeCondition("contactMechPurposeTypeId", "SHIPPING_LOCATION"),
+                            EntityCondition.makeCondition("countryGeoId", EntityOperator.NOT_EQUAL, countryGeoId)), EntityOperator.AND);
             }
             conditions.add(exprs);
         }