ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/SynchronousQueue.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/SynchronousQueue.java (file contents):
Revision 1.27 by dl, Tue Dec 23 19:38:09 2003 UTC vs.
Revision 1.28 by dl, Sat Dec 27 17:19:03 2003 UTC

# Line 86 | Line 86 | public class SynchronousQueue<E> extends
86       */
87      private static class Node extends ReentrantLock {
88          /** Condition to wait on for other party; lazily constructed */
89 <        ReentrantLock.ConditionObject done;
89 >        Condition done;
90          /** The item being transferred */
91          Object item;
92          /** Next node in wait queue */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines