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/05 17:26:45 UTC

svn commit: r801266 - /incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedStack.java

Author: smartini
Date: Wed Aug  5 15:26:44 2009
New Revision: 801266

URL: http://svn.apache.org/viewvc?rev=801266&view=rev
Log:
Non-transient non-serializable instance field in serializable class

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

Modified: incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedStack.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedStack.java?rev=801266&r1=801265&r2=801266&view=diff
==============================================================================
--- incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedStack.java (original)
+++ incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedStack.java Wed Aug  5 15:26:44 2009
@@ -28,7 +28,7 @@
 public class LinkedStack<T> extends LinkedList<T> implements Stack<T> {
     private static final long serialVersionUID = 0;
 
-    private StackListenerList<T> stackListeners = new StackListenerList<T>();
+    private transient StackListenerList<T> stackListeners = new StackListenerList<T>();
 
     public LinkedStack() {
         this(null);