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

Comparing jsr166/src/main/java/util/concurrent/AbstractExecutorService.java (file contents):
Revision 1.45 by jsr166, Thu Jul 18 01:36:08 2013 UTC vs.
Revision 1.46 by jsr166, Thu Jul 18 17:13:42 2013 UTC

# Line 47 | Line 47 | public abstract class AbstractExecutorSe
47       *
48       * @param runnable the runnable task being wrapped
49       * @param value the default value for the returned future
50 <     * @param <T> the type of the returned future's value
50 >     * @param <T> the type of the given value
51       * @return a {@code RunnableFuture} which, when run, will run the
52       * underlying runnable and which, as a {@code Future}, will yield
53       * the given value as its result and provide for cancellation of
# Line 62 | Line 62 | public abstract class AbstractExecutorSe
62       * Returns a {@code RunnableFuture} for the given callable task.
63       *
64       * @param callable the callable task being wrapped
65 +     * @param <T> the type of the callable's result
66       * @return a {@code RunnableFuture} which, when run, will call the
67       * underlying callable and which, as a {@code Future}, will yield
68       * the callable's result as its result and provide for

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines