You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2007/10/18 05:44:43 UTC

svn commit: r585836 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java

Author: doogie
Date: Wed Oct 17 20:44:43 2007
New Revision: 585836

URL: http://svn.apache.org/viewvc?rev=585836&view=rev
Log:
Last bit of java 1.5 markup for EntityUtil.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java?rev=585836&r1=585835&r2=585836&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/EntityUtil.java Wed Oct 17 20:44:43 2007
@@ -399,7 +399,7 @@
     }
 
     public static List<GenericValue> findDatedInclusionEntity(GenericDelegator delegator, String entityName, Map<String, ? extends Object> search, Timestamp now) throws GenericEntityException {
-        EntityCondition searchCondition = new EntityConditionList(UtilMisc.toList(
+        EntityCondition searchCondition = new EntityConditionList<EntityCondition>(UtilMisc.toList(
             new EntityFieldMap(search, EntityOperator.AND),
             EntityUtil.getFilterByDateExpr(now)
         ), EntityOperator.AND);