You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2009/08/04 17:22:00 UTC

svn commit: r800840 - /incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java

Author: smartini
Date: Tue Aug  4 15:21:57 2009
New Revision: 800840

URL: http://svn.apache.org/viewvc?rev=800840&view=rev
Log:
Pivot-204

Modified:
    incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java

Modified: incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java?rev=800840&r1=800839&r2=800840&view=diff
==============================================================================
--- incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java (original)
+++ incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedList.java Tue Aug  4 15:21:57 2009
@@ -34,7 +34,8 @@
  */
 public class LinkedList<T> implements List<T>, Serializable {
     // Node containing an item in the list
-    private class Node {
+    private class Node implements Serializable {
+        private static final long serialVersionUID = 0;
         private Node previous;
         private Node next;
         private T item;