diff -r 31d23e077ab3 -r 032254f2467b jdk/src/share/classes/java/util/function/IntBinaryOperator.java --- a/jdk/src/share/classes/java/util/function/IntBinaryOperator.java Wed May 15 10:25:59 2013 +0200 +++ b/jdk/src/share/classes/java/util/function/IntBinaryOperator.java Fri May 17 10:36:04 2013 -0700 @@ -44,5 +44,5 @@ * @param right the right operand value * @return the result of the operation */ - public int applyAsInt(int left, int right); + int applyAsInt(int left, int right); }