--- old/src/share/classes/java/util/function/DoubleBinaryOperator.java 2012-12-20 16:32:14.776520486 -0800 +++ new/src/share/classes/java/util/function/DoubleBinaryOperator.java 2012-12-20 16:32:14.556520475 -0800 @@ -29,19 +29,15 @@ * * @since 1.8 */ -public interface DoubleBinaryOperator /* extends BinaryOperator */ { -// -// @Override -// public default Double operate(Double left, Double right) { return operateAsDouble((double) left, (double) right); } - +public interface DoubleBinaryOperator { /** * Returns the {@code double} result of the operation upon the * {@code double} operands. The parameters are named {@code left} and * {@code right} for operations where the order of parameters matters. * * @param left the left operand value - * @param right the right operand value + * @param right the right operand value * @return the result of the operation */ - public double operateAsDouble(double left, double right); + public double applyAsDouble(double left, double right); }