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

Comparing jsr166/src/main/java/util/concurrent/AbstractExecutorService.java (file contents):
Revision 1.33 by jsr166, Wed Sep 22 18:07:49 2010 UTC vs.
Revision 1.34 by jsr166, Fri Oct 22 05:18:30 2010 UTC

# Line 129 | Line 129 | public abstract class AbstractExecutorSe
129              // Record exceptions so that if we fail to obtain any
130              // result, we can throw the last exception we got.
131              ExecutionException ee = null;
132 <            long lastTime = (timed)? System.nanoTime() : 0;
132 >            long lastTime = timed ? System.nanoTime() : 0;
133              Iterator<? extends Callable<T>> it = tasks.iterator();
134  
135              // Start one task for sure; the rest incrementally

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines