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/02/08 23:24:38 UTC

svn commit: r1068628 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java

Author: mrisaliti
Date: Tue Feb  8 22:24:38 2011
New Revision: 1068628

URL: http://svn.apache.org/viewvc?rev=1068628&view=rev
Log:
Add a @SuppressWarning("serial") in DatabaseUtil (OFBIZ-4102)

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java?rev=1068628&r1=1068627&r2=1068628&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java Tue Feb  8 22:24:38 2011
@@ -3196,6 +3196,7 @@ public class DatabaseUtil {
 
     /* ====================================================================== */
     /* ====================================================================== */
+    @SuppressWarnings("serial")
     public static class ColumnCheckInfo implements Serializable {
         public String tableName;
         public String columnName;
@@ -3224,6 +3225,7 @@ public class DatabaseUtil {
         }
     }
 
+    @SuppressWarnings("serial")
     public static class ReferenceCheckInfo implements Serializable {
         public String pkTableName;