ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/FutureTask.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/FutureTask.java (file contents):
Revision 1.57 by jsr166, Mon Sep 20 20:23:52 2010 UTC vs.
Revision 1.58 by jsr166, Wed Sep 22 18:07:49 2010 UTC

# Line 56 | Line 56 | public class FutureTask<V> implements Ru
56       * @param result the result to return on successful completion. If
57       * you don't need a particular result, consider using
58       * constructions of the form:
59 <     * {@code Future<?> f = new FutureTask<Object>(runnable, null)}
59 >     * {@code Future<?> f = new FutureTask<Void>(runnable, null)}
60       * @throws NullPointerException if runnable is null
61       */
62      public FutureTask(Runnable runnable, V result) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines