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.73 by jsr166, Fri Sep 27 01:10:10 2013 UTC vs.
Revision 1.74 by jsr166, Tue Nov 12 23:06:34 2013 UTC

# Line 1224 | Line 1224 | public class ScheduledThreadPoolExecutor
1224           * Snapshot iterator that works off copy of underlying q array.
1225           */
1226          private class Itr implements Iterator<Runnable> {
1227 <            final RunnableScheduledFuture[] array;
1227 >            final RunnableScheduledFuture<?>[] array;
1228              int cursor = 0;     // index of next element to return
1229              int lastRet = -1;   // index of last element, or -1 if no such
1230  
1231 <            Itr(RunnableScheduledFuture[] array) {
1231 >            Itr(RunnableScheduledFuture<?>[] array) {
1232                  this.array = array;
1233              }
1234  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines