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.72 by jsr166, Thu Jul 18 17:13:42 2013 UTC vs.
Revision 1.73 by jsr166, Fri Sep 27 01:10:10 2013 UTC

# Line 458 | Line 458 | public class ScheduledThreadPoolExecutor
458      }
459  
460      /**
461 <     * Returns the trigger time of a delayed action.
461 >     * Returns the nanoTime-based trigger time of a delayed action.
462       */
463      private long triggerTime(long delay, TimeUnit unit) {
464          return triggerTime(unit.toNanos((delay < 0) ? 0 : delay));
465      }
466  
467      /**
468 <     * Returns the trigger time of a delayed action.
468 >     * Returns the nanoTime-based trigger time of a delayed action.
469       */
470      long triggerTime(long delay) {
471          return now() +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines