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:40:58 UTC

svn commit: r1069076 - in /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca: EntityEcaCondition.java EntityEcaException.java EntityEcaRule.java

Author: mrisaliti
Date: Wed Feb  9 20:40:57 2011
New Revision: 1069076

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

Modified:
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaException.java
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaRule.java

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java?rev=1069076&r1=1069075&r2=1069076&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaCondition.java Wed Feb  9 20:40:57 2011
@@ -32,6 +32,7 @@ import org.w3c.dom.Element;
 /**
  * EntityEcaCondition
  */
+@SuppressWarnings("serial")
 public class EntityEcaCondition implements java.io.Serializable {
 
     public static final String module = EntityEcaCondition.class.getName();

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaException.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaException.java?rev=1069076&r1=1069075&r2=1069076&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaException.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaException.java Wed Feb  9 20:40:57 2011
@@ -23,6 +23,7 @@ import org.ofbiz.entity.GenericEntityExc
 /**
  * EntityEcaException
  */
+@SuppressWarnings("serial")
 public class EntityEcaException extends GenericEntityException {
 
     public EntityEcaException() {

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaRule.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaRule.java?rev=1069076&r1=1069075&r2=1069076&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaRule.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/eca/EntityEcaRule.java Wed Feb  9 20:40:57 2011
@@ -36,6 +36,7 @@ import org.w3c.dom.Element;
 /**
  * EntityEcaRule
  */
+@SuppressWarnings("serial")
 public class EntityEcaRule implements java.io.Serializable {
 
     public static final String module = EntityEcaRule.class.getName();