[jboss-svn-commits] JBL Code SVN: r34372 - labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Jul 29 20:21:22 EDT 2010
Author: Rikkola
Date: 2010-07-29 20:21:22 -0400 (Thu, 29 Jul 2010)
New Revision: 34372
Modified:
labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java
labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java
labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java
Log:
updating serialVersionUID to 510l
Modified: labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java 2010-07-30 00:20:21 UTC (rev 34371)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Address.java 2010-07-30 00:21:22 UTC (rev 34372)
@@ -20,7 +20,7 @@
public class Address implements Serializable {
- private static final long serialVersionUID = -8519011705761628197L;
+ private static final long serialVersionUID = 510l;
private String street;
private String suburb;
Modified: labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java 2010-07-30 00:20:21 UTC (rev 34371)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Cheese.java 2010-07-30 00:21:22 UTC (rev 34372)
@@ -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,27 +13,11 @@
* 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
@@ -44,7 +28,7 @@
/**
*
*/
- private static final long serialVersionUID = 400L;
+ private static final long serialVersionUID = 510l;
private String type;
private int price;
private int oldPrice;
@@ -143,4 +127,4 @@
-}
\ No newline at end of file
+}
Modified: labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java
===================================================================
--- labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java 2010-07-30 00:20:21 UTC (rev 34371)
+++ labs/jbossrules/trunk/drools-simulator/src/test/java/org/drools/Person.java 2010-07-30 00:21:22 UTC (rev 34372)
@@ -29,7 +29,7 @@
/**
*
*/
- private static final long serialVersionUID = 400L;
+ private static final long serialVersionUID = 510l;
private String name;
private String likes;
private int age;
@@ -287,4 +287,4 @@
this.cheese = cheese;
}
-}
\ No newline at end of file
+}
More information about the jboss-svn-commits
mailing list