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.55 by jsr166, Tue Sep 7 06:28:36 2010 UTC vs.
Revision 1.56 by jsr166, Wed Oct 6 18:52:23 2010 UTC

# Line 407 | Line 407 | public class ScheduledThreadPoolExecutor
407       * @throws NullPointerException if {@code threadFactory} is null
408       */
409      public ScheduledThreadPoolExecutor(int corePoolSize,
410 <                             ThreadFactory threadFactory) {
410 >                                       ThreadFactory threadFactory) {
411          super(corePoolSize, Integer.MAX_VALUE, 0, TimeUnit.NANOSECONDS,
412                new DelayedWorkQueue(), threadFactory);
413      }
# Line 424 | Line 424 | public class ScheduledThreadPoolExecutor
424       * @throws NullPointerException if {@code handler} is null
425       */
426      public ScheduledThreadPoolExecutor(int corePoolSize,
427 <                              RejectedExecutionHandler handler) {
427 >                                       RejectedExecutionHandler handler) {
428          super(corePoolSize, Integer.MAX_VALUE, 0, TimeUnit.NANOSECONDS,
429                new DelayedWorkQueue(), handler);
430      }
# Line 444 | Line 444 | public class ScheduledThreadPoolExecutor
444       *         {@code handler} is null
445       */
446      public ScheduledThreadPoolExecutor(int corePoolSize,
447 <                              ThreadFactory threadFactory,
448 <                              RejectedExecutionHandler handler) {
447 >                                       ThreadFactory threadFactory,
448 >                                       RejectedExecutionHandler handler) {
449          super(corePoolSize, Integer.MAX_VALUE, 0, TimeUnit.NANOSECONDS,
450                new DelayedWorkQueue(), threadFactory, handler);
451      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines