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.75 by jsr166, Sun Feb 16 14:03:53 2014 UTC vs.
Revision 1.76 by jsr166, Sun Feb 16 22:36:25 2014 UTC

# Line 499 | Line 499 | public class ScheduledThreadPoolExecutor
499                                         TimeUnit unit) {
500          if (command == null || unit == null)
501              throw new NullPointerException();
502 <        RunnableScheduledFuture<?> t = decorateTask(command,
502 >        RunnableScheduledFuture<Void> t = decorateTask(command,
503              new ScheduledFutureTask<Void>(command, null,
504                                            triggerTime(delay, unit)));
505          delayedExecute(t);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines