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.25 by dl, Fri Jan 2 21:02:31 2004 UTC vs.
Revision 1.26 by dl, Wed Jan 7 01:00:50 2004 UTC

# Line 200 | Line 200 | public class FutureTask<V> implements Fu
200          }
201  
202          /**
203 <         * Implements AQS base acquire to succeed if Done/cancelled
203 >         * Implements AQS base acquire to succeed if ran or cancelled
204           */
205 <        protected int tryAcquireShared(boolean b, int ignore) {
205 >        protected int tryAcquireShared(int ignore) {
206              return doIsDone()? 1 : -1;
207          }
208  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines