--- old/src/share/classes/java/util/function/IntUnaryOperator.java 2012-12-20 16:32:21.656520819 -0800 +++ new/src/share/classes/java/util/function/IntUnaryOperator.java 2012-12-20 16:32:21.432520808 -0800 @@ -27,6 +27,9 @@ /** * An operation on a single {@code int} operand yielding an {@code int} result. * + *

This is the primitive type specialization of {@link IntUnaryOperator} for + * {@code int}. + * * @since 1.8 */ public interface IntUnaryOperator { @@ -38,5 +41,5 @@ * @param operand the operand value * @return the operation result value */ - public int operateAsInt(int operand); + public int applyAsInt(int operand); }