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

Comparing jsr166/src/main/java/util/concurrent/Exchanger.java (file contents):
Revision 1.9 by dl, Sun Aug 31 13:33:13 2003 UTC vs.
Revision 1.10 by dl, Sat Oct 11 15:37:31 2003 UTC

# Line 63 | Line 63 | import java.util.concurrent.locks.*;
63   */
64   public class Exchanger<V> {
65      private final ReentrantLock lock = new ReentrantLock();
66 <    private final Condition taken = lock.newCondition();
66 >    private final ReentrantLock.ConditionObject taken = lock.newCondition();
67  
68      /** Holder for the item being exchanged */
69      private V item;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines