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.12 by dl, Sun Dec 21 14:55:52 2003 UTC vs.
Revision 1.13 by dl, Sat Dec 27 17:19:03 2003 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines