--- old/src/share/classes/java/util/function/IntBlock.java 2012-11-26 17:53:03.927300104 -0800 +++ new/src/share/classes/java/util/function/IntBlock.java 2012-11-26 17:53:03.719300094 -0800 @@ -33,7 +33,12 @@ * * @since 1.8 */ -public interface IntBlock { +public interface IntBlock extends Block { + + @Override + public default void accept(Integer t) { + accept((int) t); + } /** * Use the {@code int} input value in an operation which may modify external