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.15 by dl, Fri Dec 5 11:57:52 2003 UTC vs.
Revision 1.16 by dl, Fri Dec 19 14:42:25 2003 UTC

# Line 92 | Line 92 | public class FutureTask<V> implements Fu
92       * @param  runnable the runnable task
93       * @param result the result to return on successful completion. If
94       * you don't need a particular result, consider using
95 <     * <tt>Boolean.TRUE</tt>.
95 >     * constructions of the form:
96 >     * <tt>Future&lt;?&gt; f = new FutureTask&lt;Object&gt;(runnable, null)</tt>
97       * @throws NullPointerException if runnable is null
98       */
99      public FutureTask(Runnable runnable, V result) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines