You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2010/02/20 20:49:19 UTC

svn commit: r912202 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java

Author: lektran
Date: Sat Feb 20 19:49:18 2010
New Revision: 912202

URL: http://svn.apache.org/viewvc?rev=912202&view=rev
Log:
The following deprecated classes, constructors or methods have been removed:
org.ofbiz.entity.condition.EntityConditionList(EntityJoinOperator, T…)
- Use EntityCondition.makeCondition(EntityJoinOperator, T…) instead

org.ofbiz.entity.condition.EntityConditionList(List<T>, EntityJoinOperator)
- Use EntityCondition.makeCondition(List<T>, EntityJoinOperator) instead

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java?rev=912202&r1=912201&r2=912202&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityConditionList.java Sat Feb 20 19:49:18 2010
@@ -19,7 +19,6 @@
 package org.ofbiz.entity.condition;
 
 import java.util.Iterator;
-import java.util.List;
 
 import javolution.context.ObjectFactory;
 
@@ -41,18 +40,6 @@
         super();
     }
 
-    /** @deprecated Use EntityCondition.makeCondition() instead */
-    @Deprecated
-    public EntityConditionList(EntityJoinOperator operator, T... conditionList) {
-        init(operator, conditionList);
-    }
-
-    /** @deprecated Use EntityCondition.makeCondition() instead */
-    @Deprecated
-    public EntityConditionList(List<T> conditionList, EntityJoinOperator operator) {
-        init(conditionList, operator);
-    }
-
     @Override
     public int getConditionListSize() {
         return super.getConditionListSize();