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

Comparing jsr166/src/main/java/util/concurrent/ThreadPoolExecutor.java (file contents):
Revision 1.34 by dl, Sat Nov 1 18:36:04 2003 UTC vs.
Revision 1.35 by dl, Wed Nov 12 01:04:25 2003 UTC

# Line 246 | Line 246 | public class ThreadPoolExecutor implemen
246      private final HashSet<Worker> workers = new HashSet<Worker>();
247  
248      /**
249 <     * Timeout in nanosecods for idle threads waiting for work.
249 >     * Timeout in nanoseconds for idle threads waiting for work.
250       * Threads use this timeout only when there are more than
251       * corePoolSize present. Otherwise they wait forever for new work.
252       */
# Line 310 | Line 310 | public class ThreadPoolExecutor implemen
310      private long completedTaskCount;
311  
312      /**
313 <     * The default rejectect execution handler
313 >     * The default rejected execution handler
314       */
315      private static final RejectedExecutionHandler defaultHandler =
316          new AbortPolicy();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines