jdk/src/share/classes/java/util/function/BinaryOperator.java
changeset 18584 430628bf6412
parent 18571 8e3cb3c46ae8
child 19040 7b25fde2a4ed
--- a/jdk/src/share/classes/java/util/function/BinaryOperator.java	Sat Jun 29 06:12:28 2013 -0400
+++ b/jdk/src/share/classes/java/util/function/BinaryOperator.java	Sun Jun 30 16:02:11 2013 -0700
@@ -42,6 +42,7 @@
      * Returns a {@link BinaryOperator} which returns the lesser of two elements
      * according to the specified {@code Comparator}
      *
+     * @param <T> the type of values to be compared and returned
      * @param  comparator a {@code Comparator} for comparing the two values
      * @return a {@code BinaryOperator} which returns the lesser of its operands,
      *         according to the supplied {@code Comparator}
@@ -56,6 +57,7 @@
      * Returns a {@link BinaryOperator} which returns the greater of two elements
      * according to the specified {@code Comparator}
      *
+     * @param <T> the type of values to be compared and returned
      * @param  comparator a {@code Comparator} for comparing the two values
      * @return a {@code BinaryOperator} which returns the greater of its operands,
      *         according to the supplied {@code Comparator}