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:25:21 UTC

svn commit: r801264 - /incubator/pivot/trunk/core/src/org/apache/pivot/collections/ArrayStack.java

Author: smartini
Date: Wed Aug  5 15:25:21 2009
New Revision: 801264

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

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

Modified: incubator/pivot/trunk/core/src/org/apache/pivot/collections/ArrayStack.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/core/src/org/apache/pivot/collections/ArrayStack.java?rev=801264&r1=801263&r2=801264&view=diff
==============================================================================
--- incubator/pivot/trunk/core/src/org/apache/pivot/collections/ArrayStack.java (original)
+++ incubator/pivot/trunk/core/src/org/apache/pivot/collections/ArrayStack.java Wed Aug  5 15:25:21 2009
@@ -30,7 +30,7 @@
 public class ArrayStack<T> extends ArrayList<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 ArrayStack() {
         this(null);