--- old/src/share/classes/java/util/stream/Stream.java 2013-07-05 16:28:38.082021612 -0700 +++ new/src/share/classes/java/util/stream/Stream.java 2013-07-05 16:28:34.422021677 -0700 @@ -651,12 +651,13 @@ * } * * @param the type of the result + * @param the intermediate accumulation type of the {@code Collector} * @param collector the {@code Collector} describing the reduction * @return the result of the reduction * @see #collect(Supplier, BiConsumer, BiConsumer) * @see Collectors */ - R collect(Collector collector); + R collect(Collector collector); /** * Returns the minimum element of this stream according to the provided