Commit da1c22e1 by Fernando Nasser Committed by Fernando Nasser

EventQueue.java (pop): Prevent breaking the chain if pop is called for an intermediate queue.

        * java/awt/EventQueue.java (pop): Prevent breaking the chain if pop
        is called for an intermediate queue.

From-SVN: r75998
parent eae433e9
2004-01-16 Fernando Nasser <fnasser@redhat.com>
* java/awt/EventQueue.java (pop): Prevent breaking the chain if pop
is called for an intermediate queue.
2004-01-16 Thomas Fitzsimmons <fitzsim@redhat.com>
* jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c
......
......@@ -352,7 +352,9 @@ public class EventQueue
// occur.
synchronized (prev)
{
prev.next = null;
prev.next = next;
if (next != null)
next.prev = prev;
}
synchronized (this)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment