[jboss-svn-commits] JBL Code SVN: r34366 - labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Jul 29 19:47:15 EDT 2010
Author: Rikkola
Date: 2010-07-29 19:47:15 -0400 (Thu, 29 Jul 2010)
New Revision: 34366
Modified:
labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Cheese.java
labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Person.java
Log:
updating serialVersionUID to 510l
Modified: labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Cheese.java
===================================================================
--- labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Cheese.java 2010-07-29 23:46:11 UTC (rev 34365)
+++ labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Cheese.java 2010-07-29 23:47:15 UTC (rev 34366)
@@ -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.
@@ -13,28 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package org.drools;
import java.io.Serializable;
import java.util.Date;
-/*
- * 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
@@ -45,7 +29,7 @@
/**
*
*/
- private static final long serialVersionUID = 400L;
+ private static final long serialVersionUID = 510l;
private String type;
private int price;
private int oldPrice;
@@ -135,4 +119,4 @@
-}
\ No newline at end of file
+}
Modified: labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Person.java
===================================================================
--- labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Person.java 2010-07-29 23:46:11 UTC (rev 34365)
+++ labs/jbossrules/trunk/drools-pipeline/src/test/java/org/drools/Person.java 2010-07-29 23:47:15 UTC (rev 34366)
@@ -28,7 +28,7 @@
/**
*
*/
- private static final long serialVersionUID = 400L;
+ private static final long serialVersionUID = 510l;
private String name;
private String likes;
private int age;
@@ -282,4 +282,4 @@
this.cheese = cheese;
}
-}
\ No newline at end of file
+}
More information about the jboss-svn-commits
mailing list