You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mr...@apache.org on 2011/03/05 00:18:16 UTC

svn commit: r1078210 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java

Author: mrisaliti
Date: Fri Mar  4 23:18:16 2011
New Revision: 1078210

URL: http://svn.apache.org/viewvc?rev=1078210&view=rev
Log:
Remove some warning in ModelFieldType (OFBIZ-4102)

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java?rev=1078210&r1=1078209&r2=1078210&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/model/ModelFieldType.java Fri Mar  4 23:18:16 2011
@@ -41,7 +41,7 @@ public class ModelFieldType implements S
     protected String javaType = null;
 
     /** The JDBC value handler for this Field */
-    protected JdbcValueHandler jdbcValueHandler = null;
+    protected JdbcValueHandler<?> jdbcValueHandler = null;
 
     /** The sql-type of the Field */
     protected String sqlType = null;
@@ -72,7 +72,7 @@ public class ModelFieldType implements S
     }
 
     /** Returns the JDBC value handler for this field type */
-    public JdbcValueHandler getJdbcValueHandler() {
+    public JdbcValueHandler<?> getJdbcValueHandler() {
         return this.jdbcValueHandler;
     }