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

svn commit: r801265 - /incubator/pivot/trunk/core/src/org/apache/pivot/collections/LinkedQueue.java

Author: smartini
Date: Wed Aug  5 15:26:25 2009
New Revision: 801265

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

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

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