ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/ForkJoinPool.java
(Generate patch)

Comparing jsr166/src/jsr166y/ForkJoinPool.java (file contents):
Revision 1.17 by jsr166, Thu Jul 23 23:07:57 2009 UTC vs.
Revision 1.19 by jsr166, Fri Jul 24 18:57:56 2009 UTC

# Line 619 | Line 619 | public class ForkJoinPool extends Abstra
619              return true;
620          }
621          public void run() { invoke(); }
622 +        private static final long serialVersionUID = 5232453952276885070L;
623      }
624  
625      /**
# Line 647 | Line 648 | public class ForkJoinPool extends Abstra
648              }
649          }
650          public void run() { invoke(); }
651 +        private static final long serialVersionUID = 2838392045355241008L;
652      }
653  
654      public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) {
# Line 665 | Line 667 | public class ForkJoinPool extends Abstra
667              try { invokeAll(tasks); }
668              catch (Exception ignore) {}
669          }
670 +        private static final long serialVersionUID = -7914297376763021607L;
671      }
672  
673      // Configuration and status settings and queries
# Line 1831 | Line 1834 | public class ForkJoinPool extends Abstra
1834      // AbstractExecutorService overrides
1835  
1836      protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) {
1837 <        return new AdaptedRunnable(runnable, value);
1837 >        return new AdaptedRunnable<T>(runnable, value);
1838      }
1839  
1840      protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
1841 <        return new AdaptedCallable(callable);
1841 >        return new AdaptedCallable<T>(callable);
1842      }
1843  
1844  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines