svn commit: r912224 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java

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

svn commit: r912224 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java

lektran
Author: lektran
Date: Sat Feb 20 21:09:23 2010
New Revision: 912224

URL: http://svn.apache.org/viewvc?rev=912224&view=rev
Log:
The following deprecated classes, constructors or methods have been removed:
org.ofbiz.entity.condition.EntityFunction.LENGTH(EntityConditionValue)
- Use EntityFunction.LENGTH(EntityConditionValue) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.LENGTH(Object)
- Use EntityFunction.LENGTH(Object) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.TRIM(EntityConditionValue)
- Use EntityFunction.TRIM(EntityConditionValue) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.TRIM(Object)
- Use EntityFunction.TRIM(Object) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.UPPER(EntityConditionValue)
- Use EntityFunction.UPPER(EntityConditionValue) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.UPPER(Object)
- Use EntityFunction.UPPER(Object) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.LOWER(EntityConditionValue)
- Use EntityFunction.LOWER(EntityConditionValue) instead (method rather than constructor)

org.ofbiz.entity.condition.EntityFunction.LOWER(Object)
- Use EntityFunction.LOWER(Object) instead (method rather than constructor)

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

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java?rev=912224&r1=912223&r2=912224&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/condition/EntityFunction.java Sat Feb 20 21:09:23 2010
@@ -93,12 +93,6 @@
             }
         };
         protected LENGTH() {}
-        /** @deprecated Use EntityCondition.LENGTH() instead */
-        @Deprecated
-        public LENGTH(EntityConditionValue nested) { init(nested); }
-        /** @deprecated Use EntityCondition.LENGTH() instead */
-        @Deprecated
-        public LENGTH(Object value) { init(value); }
         public void init(Object value) {
             super.init(FETCHER, SQLFunction.LENGTH, value);
         }
@@ -120,12 +114,6 @@
             }
         };
         protected TRIM() {}
-        /** @deprecated Use EntityCondition.TRIM() instead */
-        @Deprecated
-        public TRIM(EntityConditionValue nested) { init(nested); }
-        /** @deprecated Use EntityCondition.TRIM() instead */
-        @Deprecated
-        public TRIM(Object value) { init(value); }
         public void init(Object value) {
             super.init(FETCHER, SQLFunction.TRIM, value);
         }
@@ -147,12 +135,6 @@
             }
         };
         protected UPPER() {}
-        /** @deprecated Use EntityCondition.UPPER() instead */
-        @Deprecated
-        public UPPER(EntityConditionValue nested) { init(nested); }
-        /** @deprecated Use EntityCondition.UPPER() instead */
-        @Deprecated
-        public UPPER(Object value) { init(value); }
         public void init(Object value) {
             super.init(FETCHER, SQLFunction.UPPER, value);
         }
@@ -174,12 +156,6 @@
             }
         };
         protected LOWER() {}
-        /** @deprecated Use EntityCondition.LOWER() instead */
-        @Deprecated
-        public LOWER(EntityConditionValue nested) { init(nested); }
-        /** @deprecated Use EntityCondition.LOWER() instead */
-        @Deprecated
-        public LOWER(Object value) { init(value); }
         public void init(Object value) {
             super.init(FETCHER, SQLFunction.LOWER, value);
         }