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/09 21:51:42 UTC

svn commit: r1069085 - /ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java

Author: mrisaliti
Date: Wed Feb  9 20:51:42 2011
New Revision: 1069085

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

Modified:
    ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java

Modified: ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java?rev=1069085&r1=1069084&r2=1069085&view=diff
==============================================================================
--- ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java (original)
+++ ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/callops/FlexibleMessage.java Wed Feb  9 20:51:42 2011
@@ -28,6 +28,7 @@ import org.ofbiz.minilang.method.*;
 /**
  * Simple class to wrap messages that come either from a straight string or a properties file
  */
+@SuppressWarnings("serial")
 public class FlexibleMessage implements Serializable {
 
     public static final String module = FlexibleMessage.class.getName();