mrglavas 2005/03/21 19:34:45 Modified: java/src/org/apache/xerces/dom DocumentImpl.java Log: Adding serialVersionUIDs to a serializable classes. Revision Changes Path 1.83 +6 -5 xml-xerces/java/src/org/apache/xerces/dom/DocumentImpl.java Index: DocumentImpl.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DocumentImpl.java,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- DocumentImpl.java 21 Oct 2004 21:51:05 -0000 1.82 +++ DocumentImpl.java 22 Mar 2005 03:34:45 -0000 1.83 @@ -478,8 +478,9 @@ * is probably short in most cases, it might not be worth spending * the space. ***** REVISIT WHEN WE HAVE MORE EXPERIENCE. */ - class LEntry implements Serializable - { + class LEntry implements Serializable { + + private static final long serialVersionUID = 3258416144514626360L; String type; EventListener listener; boolean useCapture; @@ -862,8 +863,8 @@ * (two values, the Attr node affected (if any) and its previous * string value. Simple struct, no methods. */ - class EnclosingAttr implements Serializable - { + class EnclosingAttr implements Serializable { + private static final long serialVersionUID = 3257001077260759859L; AttrImpl node; String oldvalue; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]