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

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

# Line 59 | Line 59 | public class FutureTask<V> implements Fu
59      private Throwable exception;
60  
61      private final ReentrantLock lock = new ReentrantLock();
62 <    private final ReentrantLock.ConditionObject accessible = lock.newCondition();
62 >    private final Condition accessible = lock.newCondition();
63  
64      /**
65       * Constructs a <tt>FutureTask</tt> that will upon running, execute the

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines