[jboss-svn-commits] JBL Code SVN: r34318 - in labs/jbossrules/trunk/drools-clips/src: test/java/org/drools and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jul 29 13:15:57 EDT 2010


Author: Rikkola
Date: 2010-07-29 13:15:57 -0400 (Thu, 29 Jul 2010)
New Revision: 34318

Modified:
   labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java
   labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java
Log:
updating serialVersionUID to 510l

Modified: labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java	2010-07-29 17:14:26 UTC (rev 34317)
+++ labs/jbossrules/trunk/drools-clips/src/main/java/org/drools/clips/GeneralParseException.java	2010-07-29 17:15:57 UTC (rev 34318)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -16,22 +16,6 @@
 
 package org.drools.clips;
 
-/*
- * Copyright 2005 JBoss Inc
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
 import org.antlr.runtime.RecognitionException;
 
 public class GeneralParseException extends RecognitionException {
@@ -39,7 +23,7 @@
     /**
      * 
      */
-    private static final long serialVersionUID = 400L;
+    private static final long serialVersionUID = 510l;
     private String            message;
 
     public GeneralParseException(final String message,
@@ -52,4 +36,4 @@
         return this.message;
     }
 
-}
\ No newline at end of file
+}

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java	2010-07-29 17:14:26 UTC (rev 34317)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Cheese.java	2010-07-29 17:15:57 UTC (rev 34318)
@@ -1,5 +1,5 @@
 /**
- * Copyright 2010 JBoss Inc
+ * Copyright 2005 JBoss Inc
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,29 +18,13 @@
 
 import java.io.Serializable;
 
-/*
- * Copyright 2005 JBoss Inc
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
 public class Cheese
     implements
     Serializable {
     /**
      * 
      */
-    private static final long serialVersionUID = 400L;
+    private static final long serialVersionUID = 510l;
     private String            type;
     private int               price;
 
@@ -97,4 +81,4 @@
     
     
 
-}
\ No newline at end of file
+}

Modified: labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java
===================================================================
--- labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java	2010-07-29 17:14:26 UTC (rev 34317)
+++ labs/jbossrules/trunk/drools-clips/src/test/java/org/drools/Person.java	2010-07-29 17:15:57 UTC (rev 34318)
@@ -27,7 +27,7 @@
     /**
      * 
      */
-    private static final long serialVersionUID = 400L;
+    private static final long serialVersionUID = 510l;
     private String            name;
     private String            likes;
     private int               age;
@@ -247,4 +247,4 @@
         this.cheese = cheese;
     }
 
-}
\ No newline at end of file
+}



More information about the jboss-svn-commits mailing list