--- jsr166/src/jsr166e/CompletableFuture.java 2013/07/14 19:55:05 1.19 +++ jsr166/src/jsr166e/CompletableFuture.java 2013/07/22 16:05:34 1.20 @@ -1390,6 +1390,7 @@ public class CompletableFuture implem * * @param supplier a function returning the value to be used * to complete the returned CompletableFuture + * @param the function's return type * @return the new CompletableFuture */ public static CompletableFuture supplyAsync(Generator supplier) { @@ -1408,6 +1409,7 @@ public class CompletableFuture implem * @param supplier a function returning the value to be used * to complete the returned CompletableFuture * @param executor the executor to use for asynchronous execution + * @param the function's return type * @return the new CompletableFuture */ public static CompletableFuture supplyAsync(Generator supplier, @@ -1460,6 +1462,7 @@ public class CompletableFuture implem * the given value. * * @param value the value + * @param the type of the value * @return the completed CompletableFuture */ public static CompletableFuture completedFuture(U value) {