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.23 by dl, Tue May 17 13:08:08 2005 UTC vs.
Revision 1.24 by dl, Fri May 20 16:25:51 2005 UTC

# Line 40 | Line 40 | import java.util.*;
40   *
41   *    static class CustomTask<V> implements RunnableScheduledFuture<V> { ... }
42   *
43 < *    &lt;V&gt; protected RunnableScheduledFuture&lt;V&gt; decorateTask(
43 > *    protected &lt;V&gt; RunnableScheduledFuture&lt;V&gt; decorateTask(
44   *                 Runnable r, RunnableScheduledFuture&lt;V&gt; task) {
45   *        return new CustomTask&lt;V&gt;(r, task);
46   *     }
47   *
48 < *    &lt;V&gt; protected RunnableScheduledFuture&lt;V&gt; decorateTask(
49 < *                 Callable c, RunnableScheduledFuture&lt;V&gt; task) {
48 > *    protected &lt;V&gt; RunnableScheduledFuture&lt;V&gt; decorateTask(
49 > *                 Callable&lt;V;gt; c, RunnableScheduledFuture&lt;V&gt; task) {
50   *        return new CustomTask&lt;V&gt;(c, task);
51   *     }
52   *     // ... add constructors, etc.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines