--- old/src/share/classes/java/util/function/ObjIntConsumer.java 2013-05-06 18:47:12.043524733 -0700 +++ new/src/share/classes/java/util/function/ObjIntConsumer.java 2013-05-06 18:47:11.847524724 -0700 @@ -30,7 +30,7 @@ * {@link BiConsumer}. Unlike most other functional interfaces, * {@code ObjIntConsumer} is expected to operate via side-effects. * - * @param Type of reference argument to {@code accept()}. + * @param Type of reference argument to {@code accept()} * * @see BiConsumer * @since 1.8 @@ -44,5 +44,5 @@ * @param t an input object * @param value an input value */ - public void accept(T t, int value); + void accept(T t, int value); }