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

Comparing jsr166/src/main/java/util/concurrent/ScheduledThreadPoolExecutor.java (file contents):
Revision 1.35 by jsr166, Tue Feb 7 20:54:24 2006 UTC vs.
Revision 1.36 by dl, Wed Apr 19 15:08:04 2006 UTC

# Line 292 | Line 292 | public class ScheduledThreadPoolExecutor
292       *
293       * @param corePoolSize the number of threads to keep in the pool,
294       * even if they are idle
295 <     * @throws IllegalArgumentException if <tt>corePoolSize &lt;= 0</tt>
295 >     * @throws IllegalArgumentException if <tt>corePoolSize &lt; 0</tt>
296       */
297      public ScheduledThreadPoolExecutor(int corePoolSize) {
298          super(corePoolSize, Integer.MAX_VALUE, 0, TimeUnit.NANOSECONDS,
# Line 307 | Line 307 | public class ScheduledThreadPoolExecutor
307       * even if they are idle
308       * @param threadFactory the factory to use when the executor
309       * creates a new thread
310 <     * @throws IllegalArgumentException if <tt>corePoolSize &lt;= 0</tt>
310 >     * @throws IllegalArgumentException if <tt>corePoolSize &lt; 0</tt>
311       * @throws NullPointerException if threadFactory is null
312       */
313      public ScheduledThreadPoolExecutor(int corePoolSize,
# Line 324 | Line 324 | public class ScheduledThreadPoolExecutor
324       * even if they are idle
325       * @param handler the handler to use when execution is blocked
326       * because the thread bounds and queue capacities are reached
327 <     * @throws IllegalArgumentException if <tt>corePoolSize &lt;= 0</tt>
327 >     * @throws IllegalArgumentException if <tt>corePoolSize &lt; 0</tt>
328       * @throws NullPointerException if handler is null
329       */
330      public ScheduledThreadPoolExecutor(int corePoolSize,
# Line 343 | Line 343 | public class ScheduledThreadPoolExecutor
343       * creates a new thread
344       * @param handler the handler to use when execution is blocked
345       * because the thread bounds and queue capacities are reached.
346 <     * @throws IllegalArgumentException if <tt>corePoolSize &lt;= 0</tt>
346 >     * @throws IllegalArgumentException if <tt>corePoolSize &lt; 0</tt>
347       * @throws NullPointerException if threadFactory or handler is null
348       */
349      public ScheduledThreadPoolExecutor(int corePoolSize,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines