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.21 by dl, Sun Oct 5 23:00:18 2003 UTC vs.
Revision 1.22 by dl, Sat Oct 11 15:37:31 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines