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.101 by jsr166, Wed Nov 30 03:46:37 2016 UTC vs.
Revision 1.102 by jsr166, Sat Mar 11 18:37:22 2017 UTC

# Line 875 | Line 875 | public class ScheduledThreadPoolExecutor
875          /**
876           * Sets f's heapIndex if it is a ScheduledFutureTask.
877           */
878 <        private void setIndex(RunnableScheduledFuture<?> f, int idx) {
878 >        private static void setIndex(RunnableScheduledFuture<?> f, int idx) {
879              if (f instanceof ScheduledFutureTask)
880                  ((ScheduledFutureTask)f).heapIndex = idx;
881          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines