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:34:11 UTC

svn commit: r1068647 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java

Author: mrisaliti
Date: Tue Feb  8 22:34:11 2011
New Revision: 1068647

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

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java?rev=1068647&r1=1068646&r2=1068647&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/util/ByteWrapper.java Tue Feb  8 22:34:11 2011
@@ -27,6 +27,7 @@ import java.io.Serializable;
  *
  * A very simple class to wrap a byte array for persistence.
  */
+@SuppressWarnings("serial")
 @Deprecated
 public class ByteWrapper implements Serializable {
     protected byte[] bytes;