Author: doogie
Date: Wed Oct 17 20:44:43 2007
New Revision: 585836
URL:
http://svn.apache.org/viewvc?rev=585836&view=revLog:
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);