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.82 by jsr166, Sat Jun 18 20:22:25 2011 UTC vs.
Revision 1.83 by jsr166, Sat Jun 18 20:24:06 2011 UTC

# Line 153 | Line 153 | public class FutureTask<V> implements Ru
153       */
154      public V get() throws InterruptedException, ExecutionException {
155          int s = state;
156 <        return report(s <= COMPLETING ? awaitDone(false, 0L) : s);
156 >        return report((s <= COMPLETING) ? awaitDone(false, 0L) : s);
157      }
158  
159      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines