Update of /cvsroot/nice/Nice/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv29449/F:/nice/debian
Modified Files:
changelog
Log Message:
Make it possible to set the serialVersionUID field for Nice classes.
Index: changelog
===================================================================
RCS file: /cvsroot/nice/Nice/debian/changelog,v
retrieving revision 1.227
retrieving revision 1.228
diff -C2 -d -r1.227 -r1.228
*** changelog 21 Nov 2003 16:05:14 -0000 1.227
--- changelog 23 Nov 2003 12:52:18 -0000 1.228
***************
*** 5,8 ****
--- 5,12 ----
instance:
println("x has value "x" and y has value "y);
+ * A custom serialVersionUID can be set for Nice classes using a final field.
+ class X implements java.io.Serializable {
+ final long serialVersionUID = 123456789L;
+ }
--
|